Class RoomParticipantIdentity
public sealed class RoomParticipantIdentity : IMessage<RoomParticipantIdentity>, IEquatable<RoomParticipantIdentity>, IDeepCloneable<RoomParticipantIdentity>, IBufferMessage, IMessage
- Inheritance
-
RoomParticipantIdentity
- Implements
-
IMessage<RoomParticipantIdentity>IDeepCloneable<RoomParticipantIdentity>IBufferMessageIMessage
- Inherited Members
Constructors
RoomParticipantIdentity()
public RoomParticipantIdentity()
RoomParticipantIdentity(RoomParticipantIdentity)
public RoomParticipantIdentity(RoomParticipantIdentity other)
Parameters
otherRoomParticipantIdentity
Fields
IdentityFieldNumber
Field number for the "identity" field.
public const int IdentityFieldNumber = 2
Field Value
RevokeTokenTsFieldNumber
Field number for the "revoke_token_ts" field.
public const int RevokeTokenTsFieldNumber = 3
Field Value
RoomFieldNumber
Field number for the "room" field.
public const int RoomFieldNumber = 1
Field Value
Properties
Descriptor
public static MessageDescriptor Descriptor { get; }
Property Value
- MessageDescriptor
Identity
identity of the participant
public string Identity { get; set; }
Property Value
Parser
public static MessageParser<RoomParticipantIdentity> Parser { get; }
Property Value
- MessageParser<RoomParticipantIdentity>
RevokeTokenTs
Unix timestamp used to invalidate token whose nbf is before this value. Used only by RemoveParticipant; defaults to now(server)+leeway(1min) if left empty.
public long RevokeTokenTs { get; set; }
Property Value
Room
name of the room
public string Room { 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 RoomParticipantIdentity Clone()
Returns
- RoomParticipantIdentity
A deep clone of this object.
Equals(RoomParticipantIdentity)
public bool Equals(RoomParticipantIdentity other)
Parameters
otherRoomParticipantIdentity
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(RoomParticipantIdentity)
Merges the given message into this one.
public void MergeFrom(RoomParticipantIdentity other)
Parameters
otherRoomParticipantIdentity
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.