class EventAttribute

in global :: Sandbox

A generic event listener. You are probably looking for Sandbox.Event.* attributes.


public string EventName { get; set; }

The internal event identifier.

public int Priority { get; set; }

Events with lower numbers are run first. This defaults to 0, so setting it to -1 will mean your event will run before all other events that don't define it. Setting it to 1 would mean it'll run after all events that don't.

public bool Equals( object obj )

😔 No documentation found.

public int GetHashCode( )

😔 No documentation found.

public object TypeId { get; }

😔 No documentation found.

public bool Match( object obj )

😔 No documentation found.

public bool IsDefaultAttribute( )

😔 No documentation found.

public Type GetType( )

😔 No documentation found.

public string ToString( )

😔 No documentation found.

public EventAttribute( string eventName )

😔 No documentation found.