SIPSorcery.SIP.SIPAuthorisationDigest.SetCredentials C# (CSharp) Method

SetCredentials() public method

public SetCredentials ( string username, string password, string uri, string method ) : void
username string
password string
uri string
method string
return void
        public void SetCredentials(string username, string password, string uri, string method)
        {
            Username = username;
            Password = password;
            URI = uri;
            RequestType = method;
        }