13 references to Message
System (13)
net\System\Net\_AuthenticationState.cs (6)
190if (preauth!=null && preauth.Message!=null) { 193httpWebRequest.Headers.Set(AuthorizationHeader, preauth.Message); 253httpWebRequest.Headers.Set(AuthorizationHeader, Authorization.Message); 281if (Authorization.Message==null) { 288GlobalLog.Print("AuthenticationState#" + ValidationHelper.HashString(this) + "::AttemptAuthenticate() AuthorizationHeader:" + AuthorizationHeader + " blob: " + Authorization.Message.Length + "bytes Complete:" + Authorization.Complete.ToString()); 297httpWebRequest.Headers.Set(AuthorizationHeader, Authorization.Message);
net\System\Net\Authorization.cs (1)
86/// <para>Gets or sets the prefix for Uris that can be authenticated with the <see cref='System.Net.Authorization.Message'/> property.</para>
net\System\Net\mail\smtpconnection.cs (6)
441if (auth != null && auth.Message != null) 443info = AuthCommand.Send(this, authenticationModules[i].AuthenticationType, auth.Message); 457info = AuthCommand.Send(this, auth.Message); 985if (auth != null && auth.Message != null) 987IAsyncResult result = AuthCommand.BeginSend(connection, connection.authenticationModules[currentModule].AuthenticationType, auth.Message, authenticateCallback, this); 1068IAsyncResult result = AuthCommand.BeginSend(connection, auth.Message, authenticateContinueCallback, this);