Show / Hide Table of Contents

Class QueryResultEventArgs

A class representing an event with game state query results.

Inheritance
object
QueryResultEventArgs
Implements
IGameEventArgs
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Microsoft.XboxStudios.GameStateTracker.Generic
Assembly: GameStateTracker.Generic.dll
Syntax
public class QueryResultEventArgs : IGameEventArgs
Remarks

Initializes a new instance of the QueryResultEventArgs class.

Constructors

View Source

QueryResultEventArgs(string, QueryResult)

Initializes a new instance of the QueryResultEventArgs class.

Declaration
public QueryResultEventArgs(string name, QueryResult result)
Parameters
Type Name Description
string name

The event name.

QueryResult result

The query result.

View Source

QueryResultEventArgs(string, IEnumerable<QueryResult>)

A class representing an event with game state query results.

Declaration
public QueryResultEventArgs(string name, IEnumerable<QueryResult> results)
Parameters
Type Name Description
string name

The event name.

IEnumerable<QueryResult> results

The query results.

Remarks

Initializes a new instance of the QueryResultEventArgs class.

Properties

View Source

Name

Gets the event name.

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

Results

Gets the query results.

Declaration
public IReadOnlyCollection<QueryResult> Results { get; }
Property Value
Type Description
IReadOnlyCollection<QueryResult>

Implements

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