4 writes to RequestedProofToken
System.IdentityModel (4)
System\IdentityModel\Protocols\WSTrust\WSTrustSerializationHelper.cs (2)
1503rstr.RequestedProofToken = new RequestedProofToken(ReadComputedKeyAlgorithm(reader, trustConstants)); 1514rstr.RequestedProofToken = new RequestedProofToken(protectedKey);
System\IdentityModel\Tokens\SymmetricProofDescriptor.cs (2)
247response.RequestedProofToken = new RequestedProofToken(ComputedKeyAlgorithms.Psha1); 257response.RequestedProofToken = new RequestedProofToken(_key, _requestorWrappingCredentials);
8 references to RequestedProofToken
System.IdentityModel (3)
System\IdentityModel\Protocols\WSTrust\WSTrustSerializationHelper.cs (3)
1520if (rstr.RequestedProofToken == null) 1770if (rstr.RequestedProofToken != null) 1772responseSerializer.WriteXmlElement(writer, trustConstants.Elements.RequestedProofToken, rstr.RequestedProofToken, rstr, context);
System.ServiceModel (5)
System\ServiceModel\Security\WSTrustChannel.cs (5)
642if (response.RequestedProofToken != null) 650if (response.RequestedProofToken.ProtectedKey != null) 652return new BinarySecretSecurityToken(response.RequestedProofToken.ProtectedKey.GetKeyBytes()); 661else if (IsPsha1(response.RequestedProofToken.ComputedKeyAlgorithm)) 671throw IM.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotSupportedException(SR.GetString(SR.ID3192, response.RequestedProofToken.ComputedKeyAlgorithm)));