SamlAttribute Class
Assembly: System.IdentityModel (in system.identitymodel.dll)
The SamlAttribute class corresponds to the <saml:Attribute> XML element that is defined in the OASIS SAML 1.1 specification.
A SamlAttribute instance contains PossessProperty claims for the subject of a SamlAttributeStatement. For example, a SamlAttribute might contain an Over21 claim, whose type would be specified in the Namespace property and whose resource would be specified as a member of the collection in the AttributeValues property. When the CreatePolicy method is called, this Over21 claim is added to the authorization policy that is returned by returned from by the SamlAttributeStatement. When the AttributeValues property contains multiple elements then one claim is returned for each element.
SamlAttribute position in the SAML object hierarchy is:
SamlAttributeStatement
SamlAttribute
protected override Collection<SamlAttribute> GetIssuedClaims(RequestSecurityToken RST) { EndpointAddress rstAppliesTo = RST.AppliesTo; if (rstAppliesTo == null) { throw new InvalidOperationException("No AppliesTo EndpointAddress in RequestSecurityToken"); } string bookName = rstAppliesTo.Headers.FindHeader(Constants.BookNameHeaderName, Constants.BookNameHeaderNamespace).GetValue<string>(); if (string.IsNullOrEmpty(bookName)) throw new FaultException("The book name was not specified in the RequestSecurityToken"); EnsurePurchaseLimitSufficient(bookName); Collection<SamlAttribute> samlAttributes = new Collection<SamlAttribute>(); foreach (ClaimSet claimSet in ServiceSecurityContext.Current.AuthorizationContext.ClaimSets) { // Copy Name claims from the incoming credentials into the set of claims to be issued. IEnumerable<Claim> nameClaims = claimSet.FindClaims(ClaimTypes.Name, Rights.PossessProperty); if (nameClaims != null) { foreach (Claim nameClaim in nameClaims) { samlAttributes.Add(new SamlAttribute(nameClaim)); } } } // Add a purchase authorized claim. samlAttributes.Add(new SamlAttribute(new Claim(Constants.PurchaseAuthorizedClaim, bookName, Rights.PossessProperty))); return samlAttributes; }
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.