Class SipElement.SipAuthentication
- Namespace
- Vonage.Video.Sip.InitiateCall
- Assembly
- Vonage.dll
Represents the authentication for the SIP call.
public record SipElement.SipAuthentication : IEquatable<SipElement.SipAuthentication>
- Inheritance
-
SipElement.SipAuthentication
- Implements
- Inherited Members
Constructors
SipAuthentication(string, string)
Represents the authentication for the SIP call.
public SipAuthentication(string Username, string Password)
Parameters
UsernamestringContains the username to be used in the the SIP INVITE request for HTTP digest authentication, if it is required by your SIP platform.
PasswordstringContains the password to be used in the the SIP INVITE request for HTTP digest authentication, if it is required by your SIP platform.
Properties
Password
Contains the password to be used in the the SIP INVITE request for HTTP digest authentication, if it is required by your SIP platform.
public string Password { get; init; }
Property Value
Username
Contains the username to be used in the the SIP INVITE request for HTTP digest authentication, if it is required by your SIP platform.
public string Username { get; init; }