File: Saml2SubjectLocality.cs

package info (click to toggle)
mono 4.6.2.7%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 778,148 kB
  • ctags: 914,052
  • sloc: cs: 5,779,509; xml: 2,773,713; ansic: 432,645; sh: 14,749; makefile: 12,361; perl: 2,488; python: 1,434; cpp: 849; asm: 531; sql: 95; sed: 16; php: 1
file content (61 lines) | stat: -rw-r--r-- 2,160 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//-----------------------------------------------------------------------
// <copyright file="Saml2SubjectLocality.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
//-----------------------------------------------------------------------

namespace System.IdentityModel.Tokens
{
    using System;

    /// <summary>
    /// Represents the SubjectLocality element specified in [Saml2Core, 2.7.2.1].
    /// </summary>
    /// <remarks>
    /// This element is entirely advisory, since both of these fields are quite 
    /// easily "spoofed". [Saml2Core, 2.7.2.1]
    /// </remarks>
    public class Saml2SubjectLocality
    {
        private string address;
        private string dnsName;

        /// <summary>
        /// Initializes an instance of <see cref="Saml2SubjectLocality"/>.
        /// </summary>
        public Saml2SubjectLocality()
        {
        }

        /// <summary>
        /// Initializes an instance of <see cref="Saml2SubjectLocality"/> from an address and DNS name.
        /// </summary>
        /// <param name="address">A <see cref="String"/> indicating the address.</param>
        /// <param name="dnsName">A <see cref="String"/> indicating the DNS name.</param>
        public Saml2SubjectLocality(string address, string dnsName)
        {
            this.Address = address;
            this.DnsName = dnsName;
        }

        /// <summary>
        /// Gets or sets the network address of the system from which the principal identified
        /// by the subject was authenticated. [Saml2Core, 2.7.2.1]
        /// </summary>
        public string Address
        {
            get { return this.address; }
            set { this.address = XmlUtil.NormalizeEmptyString(value); }
        }

        /// <summary>
        /// Gets or sets the DNS name of the system from which the principal identified by the 
        /// subject was authenticated. [Saml2Core, 2.7.2.1]
        /// </summary>
        public string DnsName
        {
            get { return this.dnsName; }
            set { this.dnsName = XmlUtil.NormalizeEmptyString(value); }
        }
    }
}