Class GameEventArgs
A class representing a game event.
Implements
Inherited Members
Namespace: Microsoft.XboxStudios.GameStateTracker.Unreal
Assembly: GameStateTracker.Unreal.dll
Syntax
public class GameEventArgs : EventArgs, IGameEventArgsRemarks
Initializes a new instance of the GameEventArgs class.
Constructors
View SourceGameEventArgs(string, string?)
A class representing a game event.
Declaration
public GameEventArgs(string name, string? value = null)Parameters
| Type | Name | Description | 
|---|---|---|
| string | name | The event name. | 
| string | value | The event data. | 
Remarks
Initializes a new instance of the GameEventArgs class.
Properties
View SourceName
Gets the event name.
Declaration
public string Name { get; }Property Value
| Type | Description | 
|---|---|
| string | 
Value
Gets the event data.
Declaration
public string? Value { get; }Property Value
| Type | Description | 
|---|---|
| string |