2 instantiations of Saml2SubjectLocality
System.IdentityModel (2)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (2)
1387= new Saml2SubjectLocality(authInfo.Address, authInfo.DnsName); 5452Saml2SubjectLocality subjectLocality = new Saml2SubjectLocality();
13 references to Saml2SubjectLocality
System.IdentityModel (13)
System\IdentityModel\Tokens\Saml2AuthenticationStatement.cs (3)
20private Saml2SubjectLocality subjectLocality; 100/// Gets or sets the <see cref="Saml2SubjectLocality"/> which contains the DNS domain name and IP address for the system from which 103public Saml2SubjectLocality SubjectLocality
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (8)
3698Saml2SubjectLocality subjectLocality = null; 5435/// <param name="reader">A <see cref="XmlReader"/> positioned at a <see cref="Saml2SubjectLocality"/> element.</param> 5436/// <returns>An instance of <see cref="Saml2SubjectLocality"/> .</returns> 5437protected virtual Saml2SubjectLocality ReadSubjectLocality(XmlReader reader) 5452Saml2SubjectLocality subjectLocality = new Saml2SubjectLocality(); 5495/// <param name="writer">A <see cref="XmlWriter"/> to serialize the <see cref="Saml2SubjectLocality"/>.</param> 5496/// <param name="data">The <see cref="Saml2SubjectLocality"/> to serialize.</param> 5497protected virtual void WriteSubjectLocality(XmlWriter writer, Saml2SubjectLocality data)
System\IdentityModel\Tokens\Saml2SubjectLocality.cs (2)
24/// Initializes an instance of <see cref="Saml2SubjectLocality"/>. 31/// Initializes an instance of <see cref="Saml2SubjectLocality"/> from an address and DNS name.