30 references to SamlDictionary
System.IdentityModel (30)
System\IdentityModel\DictionaryManager.cs (1)
29this.samlDictionary = XD.SamlDictionary;
System\IdentityModel\Tokens\SamlAdvice.cs (2)
46throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument(SR.GetString(SR.SAMLEntityCannotBeNullOrEmpty, XD.SamlDictionary.AssertionIdReference.Value)); 57throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument(SR.GetString(SR.SAMLEntityCannotBeNullOrEmpty, XD.SamlDictionary.Assertion.Value));
System\IdentityModel\Tokens\SamlAssertion.cs (1)
80throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument(SR.GetString(SR.SAMLEntityCannotBeNullOrEmpty, XD.SamlDictionary.Statement.Value));
System\IdentityModel\Tokens\SamlAttributeStatement.cs (1)
35throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument(SR.GetString(SR.SAMLEntityCannotBeNullOrEmpty, XD.SamlDictionary.Attribute.Value));
System\IdentityModel\Tokens\SamlAudienceRestrictionCondition.cs (1)
30throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument(SR.GetString(SR.SAMLEntityCannotBeNullOrEmpty, XD.SamlDictionary.Audience.Value));
System\IdentityModel\Tokens\SamlAuthenticationStatement.cs (3)
20string authenticationMethod = XD.SamlDictionary.UnspecifiedAuthenticationMethod.Value; 51throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument(SR.GetString(SR.SAMLEntityCannotBeNullOrEmpty, XD.SamlDictionary.Assertion.Value)); 81this.authenticationMethod = XD.SamlDictionary.UnspecifiedAuthenticationMethod.Value;
System\IdentityModel\Tokens\SamlAuthorizationDecisionStatement.cs (1)
45throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument(SR.GetString(SR.SAMLEntityCannotBeNullOrEmpty, XD.SamlDictionary.Action.Value));
System\IdentityModel\Tokens\SamlConditions.cs (1)
46throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument(SR.GetString(SR.SAMLEntityCannotBeNullOrEmpty, XD.SamlDictionary.Condition.Value));
System\IdentityModel\Tokens\SamlEvidence.cs (2)
41throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument(SR.GetString(SR.SAMLEntityCannotBeNullOrEmpty, XD.SamlDictionary.AssertionIdReference.Value)); 52throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument(SR.GetString(SR.SAMLEntityCannotBeNullOrEmpty, XD.SamlDictionary.Assertion.Value));
System\IdentityModel\Tokens\SamlSubject.cs (1)
56throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument(SR.GetString(SR.SAMLEntityCannotBeNullOrEmpty, XD.SamlDictionary.SubjectConfirmationMethod.Value));
System\IdentityModel\Tokens\WSSecurityJan2004.cs (16)
568if (reader.IsStartElement(XD.SamlDictionary.AuthorityBinding, XD.SecurityJan2004Dictionary.SamlUri)) 601if (reader.IsStartElement(XD.SamlDictionary.AuthorityBinding, XD.SecurityJan2004Dictionary.SamlUri)) 608binding = reader.GetAttribute(XD.SamlDictionary.Binding, null); 611throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new XmlException(SR.GetString(SR.RequiredAttributeMissing, XD.SamlDictionary.Binding.Value, XD.SamlDictionary.AuthorityBinding.Value))); 613location = reader.GetAttribute(XD.SamlDictionary.Location, null); 616throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new XmlException(SR.GetString(SR.RequiredAttributeMissing, XD.SamlDictionary.Location.Value, XD.SamlDictionary.AuthorityBinding.Value))); 618authorityKind = reader.GetAttribute(XD.SamlDictionary.AuthorityKind, null); 621throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new XmlException(SR.GetString(SR.RequiredAttributeMissing, XD.SamlDictionary.AuthorityKind.Value, XD.SamlDictionary.AuthorityBinding.Value))); 674writer.WriteStartElement(XD.SamlDictionary.PreferredPrefix.Value, XD.SamlDictionary.AuthorityBinding, XD.SecurityJan2004Dictionary.SamlUri); 677writer.WriteAttributeString(XD.SamlDictionary.Binding, null, samlClause.Binding); 681writer.WriteAttributeString(XD.SamlDictionary.Location, null, samlClause.Location); 685writer.WriteAttributeString(XD.SamlDictionary.AuthorityKind, null, samlClause.AuthorityKind);