4 overrides of GetOutgoingBlob
System.Net.Security (4)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (1)
264public override unsafe byte[]? GetOutgoingBlob(ReadOnlySpan<byte> incomingBlob, out NegotiateAuthenticationStatusCode statusCode)
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (1)
97public override unsafe byte[]? GetOutgoingBlob(ReadOnlySpan<byte> incomingBlob, out NegotiateAuthenticationStatusCode statusCode)
System\Net\NegotiateAuthenticationPal.Unix.cs (1)
267public override byte[]? GetOutgoingBlob(ReadOnlySpan<byte> incomingBlob, out NegotiateAuthenticationStatusCode statusCode)
System\Net\NegotiateAuthenticationPal.Unsupported.cs (1)
46public override byte[]? GetOutgoingBlob(ReadOnlySpan<byte> incomingBlob, out NegotiateAuthenticationStatusCode statusCode)
3 references to GetOutgoingBlob
System.Net.Security (3)
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (2)
178mechBlob = _optimisticMechanism.GetOutgoingBlob(incomingBlob, out statusCode); 324byte[]? response = _mechanism.GetOutgoingBlob(blob, out statusCode);
System\Net\Security\NegotiateAuthentication.cs (1)
215byte[]? blob = _pal.GetOutgoingBlob(incomingBlob, out statusCode);