Show / Hide Table of Contents

Class RoomLeaveDiagnostics

This is a JSON template for room leave diagnostics.

Inheritance
System.Object
RoomLeaveDiagnostics
Implements
IDirectResponseSchema
Namespace: Google.Apis.Games.v1.Data
Assembly: Google.Apis.Games.v1.dll
Syntax
public class RoomLeaveDiagnostics : object, IDirectResponseSchema

Properties

AndroidNetworkSubtype

Android network subtype. http://developer.android.com/reference/android/net/NetworkInfo.html#getSubtype()

Declaration
public virtual Nullable<int> AndroidNetworkSubtype { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

AndroidNetworkType

Android network type. http://developer.android.com/reference/android/net/NetworkInfo.html#getType()

Declaration
public virtual Nullable<int> AndroidNetworkType { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

IosNetworkType

iOS network type as defined in Reachability.h.

Declaration
public virtual Nullable<int> IosNetworkType { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Kind

Uniquely identifies the type of this resource. Value is always the fixed string games#roomLeaveDiagnostics.

Declaration
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

NetworkOperatorCode

The MCC+MNC code for the client's network connection. On Android: http://developer.android.com/reference/android/telephony/TelephonyManager.html#getNetworkOperator() On iOS, see: https://developer.apple.com/library/ios/documentation/NetworkingInternet/Reference/CTCarrier/Reference/ Reference.html

Declaration
public virtual string NetworkOperatorCode { get; set; }
Property Value
Type Description
System.String

NetworkOperatorName

The name of the carrier of the client's network connection. On Android: http://developer.android.com/reference/android/telephony/TelephonyManager.html#getNetworkOperatorName() On iOS: https://developer.apple.com/library/ios/documentation/NetworkingInternet/Reference/CTCarrier/Reference/ Reference.html#//apple_ref/occ/instp/CTCarrier/carrierName

Declaration
public virtual string NetworkOperatorName { get; set; }
Property Value
Type Description
System.String

PeerSession

Diagnostics about all peer sessions.

Declaration
public virtual IList<PeerSessionDiagnostics> PeerSession { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<PeerSessionDiagnostics>

SocketsUsed

Whether or not sockets were used.

Declaration
public virtual Nullable<bool> SocketsUsed { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

IDirectResponseSchema
Back to top