5 writes to nameSpace
System.IdentityModel (5)
System\IdentityModel\Tokens\SamlAttribute.cs (5)
41this.nameSpace = StringUtil.OptimizeString(attributeNamespace); 71this.nameSpace = String.Empty; 76this.nameSpace = StringUtil.OptimizeString(claim.ClaimType.Substring(0, lastSlashIndex)); 109this.nameSpace = StringUtil.OptimizeString(value); 231this.nameSpace = reader.GetAttribute(dictionary.AttributeNamespace, null);
8 references to nameSpace
System.IdentityModel (8)
System\IdentityModel\Tokens\SamlAttribute.cs (8)
42this.claimType = string.IsNullOrEmpty(this.nameSpace) ? this.name : this.nameSpace + "/" + this.name; 100get { return this.nameSpace; } 209if (string.IsNullOrEmpty(this.nameSpace)) 232if (string.IsNullOrEmpty(this.nameSpace)) 235this.claimType = string.IsNullOrEmpty(this.nameSpace) ? this.name : this.nameSpace + "/" + this.name; 275writer.WriteString(this.nameSpace);