3 writes to KeyWrapAlgorithm
System.IdentityModel (3)
System\IdentityModel\Protocols\WSTrust\WSTrust13RequestSerializer.cs (2)
75rst.KeyWrapAlgorithm = reader.ReadElementContentAsString(); 323secondaryParameters.KeyWrapAlgorithm = reader.ReadElementContentAsString();
System\IdentityModel\Protocols\WSTrust\WSTrust13ResponseSerializer.cs (1)
80rstr.KeyWrapAlgorithm = reader.ReadElementContentAsString();
10 references to KeyWrapAlgorithm
System.IdentityModel (10)
System\IdentityModel\Protocols\WSTrust\WSTrust13RequestSerializer.cs (8)
76if (!UriUtil.CanCreateValidUri(rst.KeyWrapAlgorithm, UriKind.Absolute)) 78throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new WSTrustSerializationException(SR.GetString(SR.ID3135, WSTrust13Constants.ElementNames.KeyWrapAlgorithm, WSTrust13Constants.NamespaceURI, rst.KeyWrapAlgorithm))); 131if (!string.IsNullOrEmpty(rst.KeyWrapAlgorithm)) 133if (!UriUtil.CanCreateValidUri(rst.KeyWrapAlgorithm, UriKind.Absolute)) 135throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new WSTrustSerializationException(SR.GetString(SR.ID3135, WSTrust13Constants.ElementNames.KeyWrapAlgorithm, WSTrust13Constants.NamespaceURI, rst.KeyWrapAlgorithm))); 138this.WriteXmlElement(writer, WSTrust13Constants.ElementNames.KeyWrapAlgorithm, rst.KeyWrapAlgorithm, rst, context); 324if (!UriUtil.CanCreateValidUri(secondaryParameters.KeyWrapAlgorithm, UriKind.Absolute)) 332secondaryParameters.KeyWrapAlgorithm)));
System\IdentityModel\Protocols\WSTrust\WSTrust13ResponseSerializer.cs (2)
115if (!string.IsNullOrEmpty(rstr.KeyWrapAlgorithm)) 117this.WriteXmlElement(writer, WSTrust13Constants.ElementNames.KeyWrapAlgorithm, rstr.KeyWrapAlgorithm, rstr, context);