Show / Hide Table of Contents

Class GameEventArgs

A class representing a game event.

Inheritance
object
EventArgs
GameEventArgs
PlayerEventArgs
Implements
IGameEventArgs
Inherited Members
EventArgs.Empty
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Microsoft.XboxStudios.GameStateTracker.Unreal
Assembly: GameStateTracker.Unreal.dll
Syntax
public class GameEventArgs : EventArgs, IGameEventArgs
Remarks

Initializes a new instance of the GameEventArgs class.

Constructors

View Source

GameEventArgs(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 Source

Name

Gets the event name.

Declaration
public string Name { get; }
Property Value
Type Description
string
View Source

Value

Gets the event data.

Declaration
public string? Value { get; }
Property Value
Type Description
string

Implements

IGameEventArgs
  • View Source
In this article
Back to top Generated by DocFX