Click or drag to resize
EmptyEventArgs Class
Event arguments class to be used by component class events that do not provide any arguments.
Inheritance Hierarchy
SystemObject
  CoronaLabs.WinRTEmptyEventArgs

Namespace: CoronaLabs.WinRT
Assembly: CoronaLabs (in CoronaLabs.dll) Version: 255.255.255.255
Syntax
public sealed class EmptyEventArgs : __IEmptyEventArgsPublicNonVirtuals

The EmptyEventArgs type exposes the following members.

Methods
  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties
  NameDescription
Public propertyStatic memberInstance
Provides a pre-allocated empty event arguments objects to be used component class events.
Top
Remarks

This class provides the .NET equivalent of the System.EventArgs.Empty static method.

You cannot create instances of this class. Instead, you fetch a pre-allocated instance via the static EmptyEventArgs.Instance property.

See Also