EmptyEventArgsInstance Property |
Provides a pre-allocated empty event arguments objects to be used component class events.
Namespace: CoronaLabs.WinRTAssembly: CoronaLabs (in CoronaLabs.dll) Version: 255.255.255.255
Syntaxpublic static EmptyEventArgs Instance { get; }
Public Shared ReadOnly Property Instance As EmptyEventArgs
Get
Property Value
Type:
EmptyEventArgsAn 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