NegotiateAuthentication.GetOutgoingBlob Metod

Definition

Överlagringar

Name Description
GetOutgoingBlob(ReadOnlySpan<Byte>, NegotiateAuthenticationStatusCode)

Utvärderar en autentiseringstoken som skickas av den andra parten och returnerar en token som svar.

GetOutgoingBlob(String, NegotiateAuthenticationStatusCode)

Utvärderar en autentiseringstoken som skickas av den andra parten och returnerar en token som svar.

GetOutgoingBlob(ReadOnlySpan<Byte>, NegotiateAuthenticationStatusCode)

Källa:
NegotiateAuthentication.cs
Källa:
NegotiateAuthentication.cs
Källa:
NegotiateAuthentication.cs
Källa:
NegotiateAuthentication.cs
Källa:
NegotiateAuthentication.cs

Utvärderar en autentiseringstoken som skickas av den andra parten och returnerar en token som svar.

public:
 cli::array <System::Byte> ^ GetOutgoingBlob(ReadOnlySpan<System::Byte> incomingBlob, [Runtime::InteropServices::Out] System::Net::Security::NegotiateAuthenticationStatusCode % statusCode);
public byte[]? GetOutgoingBlob(ReadOnlySpan<byte> incomingBlob, out System.Net.Security.NegotiateAuthenticationStatusCode statusCode);
member this.GetOutgoingBlob : ReadOnlySpan<byte> * NegotiateAuthenticationStatusCode -> byte[]
Public Function GetOutgoingBlob (incomingBlob As ReadOnlySpan(Of Byte), ByRef statusCode As NegotiateAuthenticationStatusCode) As Byte()

Parametrar

incomingBlob
ReadOnlySpan<Byte>

Inkommande autentiseringstoken eller ett tomt värde när autentiseringsutbytet initieras.

statusCode
NegotiateAuthenticationStatusCode

Statuskod som returneras av autentiseringsprovidern.

Returer

Byte[]

En utgående autentiseringstoken som ska skickas till den andra parten.

Kommentarer

När du initierar autentiseringsutbytet börjar en av parterna med en tom inkommandeBlob-parameter.

Lyckad autentisering returnerar antingen Completed statuskoden eller ContinueNeeded . Annan statuskod anger ett oåterkalleligt fel.

När ContinueNeeded returneras är returvärdet en autentiseringstoken som ska transporteras till den andra parten.

Gäller för

GetOutgoingBlob(String, NegotiateAuthenticationStatusCode)

Källa:
NegotiateAuthentication.cs
Källa:
NegotiateAuthentication.cs
Källa:
NegotiateAuthentication.cs
Källa:
NegotiateAuthentication.cs
Källa:
NegotiateAuthentication.cs

Utvärderar en autentiseringstoken som skickas av den andra parten och returnerar en token som svar.

public:
 System::String ^ GetOutgoingBlob(System::String ^ incomingBlob, [Runtime::InteropServices::Out] System::Net::Security::NegotiateAuthenticationStatusCode % statusCode);
public string? GetOutgoingBlob(string? incomingBlob, out System.Net.Security.NegotiateAuthenticationStatusCode statusCode);
member this.GetOutgoingBlob : string * NegotiateAuthenticationStatusCode -> string
Public Function GetOutgoingBlob (incomingBlob As String, ByRef statusCode As NegotiateAuthenticationStatusCode) As String

Parametrar

incomingBlob
String

Inkommande autentiseringstoken eller ett tomt värde när autentiseringsutbytet initieras. Kodad som base64.

statusCode
NegotiateAuthenticationStatusCode

Statuskod som returneras av autentiseringsprovidern.

Returer

En utgående autentiseringstoken som ska skickas till den andra parten, kodad som base64.

Kommentarer

När du initierar autentiseringsutbytet börjar en av parterna med en tom inkommandeBlob-parameter.

Lyckad autentisering returnerar antingen Completed statuskoden eller ContinueNeeded . Annan statuskod anger ett oåterkalleligt fel.

När ContinueNeeded returneras är returvärdet en autentiseringstoken som ska transporteras till den andra parten.

Gäller för