Click or drag to resize
EmptyEventArgsInstance Property
Provides a pre-allocated empty event arguments objects to be used component class events.

Namespace: CoronaLabs.WinRT
Assembly: CoronaLabs (in CoronaLabs.dll) Version: 255.255.255.255
Syntax
public static EmptyEventArgs Instance { get; }

Property Value

Type: EmptyEventArgs
An empty event arguments object that can be used by events.
Remarks
This property provides a pre-allocated empty event args object. This object should be used by component class events that do not need to provide any event arguments. This is the equivalent to a .NET System.EventArgs.Empty object.
See Also