Table of Contents

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

Username string

Contains the username to be used in the the SIP INVITE request for HTTP digest authentication, if it is required by your SIP platform.

Password string

Contains 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

string

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; }

Property Value

string