PeerNodeAddress.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / PeerNodeAddress.cs / 1 / PeerNodeAddress.cs

                            //------------------------------------------------------------ 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------
namespace System.ServiceModel
{ 
    using System.Collections.Generic;
    using System.Globalization; 
    using System.Collections.ObjectModel; 
    using System.Net;
    using System.Runtime.Serialization; 
    using System.ServiceModel.Channels;

    [DataContract(Name = "PeerNodeAddress", Namespace = PeerStrings.Namespace)]
    [KnownType(typeof(IPAddress[]))] 
    public sealed class PeerNodeAddress
    { 
        [DataMember(Name = "EndpointAddress")] 
        internal EndpointAddress10 InnerEPR
        { 
            get { return this.endpointAddress == null ? null : EndpointAddress10.FromEndpointAddress(this.endpointAddress); }
            set { this.endpointAddress = (value == null ? null : value.ToEndpointAddress()); }
        }
 
        EndpointAddress endpointAddress;
        string servicePath; 
 
        ReadOnlyCollection ipAddresses;
 
        [DataMember(Name = "IPAddresses")]
        internal IList ipAddressesDataMember
        {
            get { return ipAddresses; } 
            set { ipAddresses = new ReadOnlyCollection((value == null) ? new IPAddress[0] : value); }
        } 
 
        //NOTE: if a default constructor is provided, make sure to review ServicePath property getter.
        public PeerNodeAddress(EndpointAddress endpointAddress, ReadOnlyCollection ipAddresses) 
        {
            if (endpointAddress == null)
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentNullException("endpointAddress"));
            if (ipAddresses == null) 
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentNullException("ipAddresses"));
            Initialize(endpointAddress, ipAddresses); 
        } 

        void Initialize(EndpointAddress endpointAddress, ReadOnlyCollection ipAddresses) 
        {
            this.endpointAddress = endpointAddress;
            servicePath = this.endpointAddress.Uri.PathAndQuery.ToUpperInvariant();
            this.ipAddresses = ipAddresses; 
        }
 
        public EndpointAddress EndpointAddress 
        {
            get { return this.endpointAddress; } 
        }

        internal string ServicePath
        { 
            get
            { 
                if (this.servicePath == null) 
                {
                    this.servicePath = this.endpointAddress.Uri.PathAndQuery.ToUpperInvariant(); 
                }
                return this.servicePath;
            }
        } 

        public ReadOnlyCollection IPAddresses 
        { 
            get
            { 
                if (this.ipAddresses == null)
                {
                    this.ipAddresses = new ReadOnlyCollection(new IPAddress[0]);
                } 
                return this.ipAddresses;
            } 
        } 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK