Class ReconnectResponse
public sealed class ReconnectResponse : IMessage<ReconnectResponse>, IEquatable<ReconnectResponse>, IDeepCloneable<ReconnectResponse>, IBufferMessage, IMessage
- Inheritance
-
ReconnectResponse
- Implements
-
IMessage<ReconnectResponse>IDeepCloneable<ReconnectResponse>IBufferMessageIMessage
- Inherited Members
Constructors
ReconnectResponse()
public ReconnectResponse()
ReconnectResponse(ReconnectResponse)
public ReconnectResponse(ReconnectResponse other)
Parameters
otherReconnectResponse
Fields
ClientConfigurationFieldNumber
Field number for the "client_configuration" field.
public const int ClientConfigurationFieldNumber = 2
Field Value
IceServersFieldNumber
Field number for the "ice_servers" field.
public const int IceServersFieldNumber = 1
Field Value
LastMessageSeqFieldNumber
Field number for the "last_message_seq" field.
public const int LastMessageSeqFieldNumber = 4
Field Value
ServerInfoFieldNumber
Field number for the "server_info" field.
public const int ServerInfoFieldNumber = 3
Field Value
Properties
ClientConfiguration
public ClientConfiguration ClientConfiguration { get; set; }
Property Value
Descriptor
public static MessageDescriptor Descriptor { get; }
Property Value
- MessageDescriptor
IceServers
public RepeatedField<ICEServer> IceServers { get; }
Property Value
- RepeatedField<ICEServer>
LastMessageSeq
last sequence number of reliable message received before resuming
public uint LastMessageSeq { get; set; }
Property Value
Parser
public static MessageParser<ReconnectResponse> Parser { get; }
Property Value
- MessageParser<ReconnectResponse>
ServerInfo
public ServerInfo ServerInfo { get; set; }
Property Value
Methods
CalculateSize()
Calculates the size of this message in Protocol Buffer wire format, in bytes.
public int CalculateSize()
Returns
- int
The number of bytes required to write this message to a coded output stream.
Clone()
Creates a deep clone of this object.
public ReconnectResponse Clone()
Returns
- ReconnectResponse
A deep clone of this object.
Equals(ReconnectResponse)
public bool Equals(ReconnectResponse other)
Parameters
otherReconnectResponse
Returns
Equals(object)
public override bool Equals(object other)
Parameters
otherobject
Returns
GetHashCode()
public override int GetHashCode()
Returns
MergeFrom(CodedInputStream)
Merges the data from the specified coded input stream with the current message.
public void MergeFrom(CodedInputStream input)
Parameters
inputCodedInputStream
Remarks
See the user guide for precise merge semantics.
MergeFrom(ReconnectResponse)
Merges the given message into this one.
public void MergeFrom(ReconnectResponse other)
Parameters
otherReconnectResponse
Remarks
See the user guide for precise merge semantics.
ToString()
public override string ToString()
Returns
WriteTo(CodedOutputStream)
Writes the data to the given coded output stream.
public void WriteTo(CodedOutputStream output)
Parameters
outputCodedOutputStreamCoded output stream to write the data to. Must not be null.