Class TurnAuthArgs
Arguments for the TurnServer's authentication callback.
Inheritance
System.Object
TurnAuthArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: FM.LiveSwitch
Assembly: FM.LiveSwitch.dll
Syntax
public class TurnAuthArgs
Constructors
TurnAuthArgs(String, String, TurnAuthOperation)
Initializes a new instance of the TurnAuthArgs class.
Declaration
public TurnAuthArgs(string username, string realm, TurnAuthOperation operation)
Parameters
Type | Name | Description |
---|---|---|
System.String | username | The username from the request. |
System.String | realm | The realm from the request. |
TurnAuthOperation | operation | The operation. |
Properties
Operation
Gets or sets the operation.
Declaration
public TurnAuthOperation Operation { get; }
Property Value
Type | Description |
---|---|
TurnAuthOperation |
Realm
Gets or sets the realm from the request.
Declaration
public string Realm { get; }
Property Value
Type | Description |
---|---|
System.String |
Username
Gets or sets the username from the request.
Declaration
public string Username { get; }
Property Value
Type | Description |
---|---|
System.String |