20 references to SecurityJan2004Strings
dotnet-svcutil-lib (20)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityJan2004.cs (12)
65
internal const string EncodingTypeAttributeString =
SecurityJan2004Strings
.EncodingType;
66
internal const string EncodingTypeValueBase64Binary =
SecurityJan2004Strings
.EncodingTypeValueBase64Binary;
67
internal const string EncodingTypeValueHexBinary =
SecurityJan2004Strings
.EncodingTypeValueHexBinary;
196
: base(tokenSerializer, new string[] {
SecurityJan2004Strings
.KerberosTokenTypeGSS,
SecurityJan2004Strings
.KerberosTokenType1510 })
278
public override string TokenTypeUri { get { return
SecurityJan2004Strings
.UPTokenType; } }
349
writer.WriteAttributeString(XD.SecurityJan2004Dictionary.TypeAttribute, null,
SecurityJan2004Strings
.UPTokenPasswordTextValue);
360
if (type != null && type.Length > 0 && type !=
SecurityJan2004Strings
.UPTokenPasswordTextValue)
400
XmlHelper.OnUnexpectedChildNodeError(
SecurityJan2004Strings
.UserNameTokenElement, reader);
406
XmlHelper.OnRequiredElementMissing(
SecurityJan2004Strings
.UserNameElement,
SecurityJan2004Strings
.Namespace);
469
internal const string ValueTypeAbsoluteUri =
SecurityJan2004Strings
.X509TokenType;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityTokenSerializer.cs (3)
440
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new XmlException(string.Format(SRServiceModel.CannotReadToken, element.LocalName, element.NamespaceURI, element.GetAttribute(
SecurityJan2004Strings
.ValueType, null))));
498
if (element.HasAttribute(
SecurityJan2004Strings
.ValueType, null))
500
valueTypeUri = element.GetAttribute(
SecurityJan2004Strings
.ValueType, null);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrust.cs (5)
96
if (element.HasAttribute(
SecurityJan2004Strings
.ValueType, null))
98
valueTypeUri = element.GetAttribute(
SecurityJan2004Strings
.ValueType, null);
165
private static readonly string s_base64Uri =
SecurityJan2004Strings
.EncodingTypeValueBase64Binary;
166
private static readonly string s_hexBinaryUri =
SecurityJan2004Strings
.EncodingTypeValueHexBinary;
435
string valueTypeUri = element.GetAttribute(
SecurityJan2004Strings
.ValueType);