4 writes to TokenType
System.ServiceModel (4)
System\ServiceModel\Security\AcceleratedTokenAuthenticator.cs (1)
243rstr.TokenType = this.SecurityContextTokenUri;
System\ServiceModel\Security\SecuritySessionSecurityTokenAuthenticator.cs (1)
725rstr.TokenType = this.sctUri;
System\ServiceModel\Security\SspiNegotiationTokenAuthenticator.cs (2)
293dummyRstr.TokenType = this.SecurityContextTokenUri; 329negotiationRstr.TokenType = this.SecurityContextTokenUri;
11 references to TokenType
System.ServiceModel (11)
System\ServiceModel\Channels\PeerSecurityHelpers.cs (1)
618if (String.Compare(response.TokenType, PeerHashToken.TokenTypeString, StringComparison.OrdinalIgnoreCase) != 0)
System\ServiceModel\Security\WSTrust.cs (10)
669if (rstr.TokenType != null) 671if (expectedTokenType != null && expectedTokenType != rstr.TokenType) 673throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.BadIssuedTokenType, rstr.TokenType, expectedTokenType))); 675tokenType = rstr.TokenType; 778if (rstr.TokenType != null) 780if (expectedTokenType != null && expectedTokenType != rstr.TokenType) 782throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.BadIssuedTokenType, rstr.TokenType, expectedTokenType))); 784tokenType = rstr.TokenType; 1139if (rstr.TokenType != null) 1140writer.WriteElementString(DriverDictionary.Prefix.Value, DriverDictionary.TokenType, DriverDictionary.Namespace, rstr.TokenType);