13 references to Message
System (13)
net\System\Net\_AuthenticationState.cs (6)
190
if (preauth!=null && preauth.
Message
!=null) {
193
httpWebRequest.Headers.Set(AuthorizationHeader, preauth.
Message
);
253
httpWebRequest.Headers.Set(AuthorizationHeader, Authorization.
Message
);
281
if (Authorization.
Message
==null) {
288
GlobalLog.Print("AuthenticationState#" + ValidationHelper.HashString(this) + "::AttemptAuthenticate() AuthorizationHeader:" + AuthorizationHeader + " blob: " + Authorization.
Message
.Length + "bytes Complete:" + Authorization.Complete.ToString());
297
httpWebRequest.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)
441
if (auth != null && auth.
Message
!= null)
443
info = AuthCommand.Send(this, authenticationModules[i].AuthenticationType, auth.
Message
);
457
info = AuthCommand.Send(this, auth.
Message
);
985
if (auth != null && auth.
Message
!= null)
987
IAsyncResult result = AuthCommand.BeginSend(connection, connection.authenticationModules[currentModule].AuthenticationType, auth.
Message
, authenticateCallback, this);
1068
IAsyncResult result = AuthCommand.BeginSend(connection, auth.
Message
, authenticateContinueCallback, this);