EndpointDiscoveryBehavior.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.ServiceModel.Discovery / System / ServiceModel / Discovery / EndpointDiscoveryBehavior.cs / 1305376 / EndpointDiscoveryBehavior.cs

                            //---------------------------------------------------------------- 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//---------------------------------------------------------------
namespace System.ServiceModel.Discovery
{ 
    using System;
    using System.Collections.ObjectModel; 
    using System.Diagnostics.CodeAnalysis; 
    using System.Runtime;
    using System.ServiceModel.Channels; 
    using System.ServiceModel.Description;
    using System.ServiceModel.Dispatcher;
    using System.Xml.Linq;
    using System.Xml; 

    [Fx.Tag.XamlVisible(false)] 
    public class EndpointDiscoveryBehavior : IEndpointBehavior 
    {
        ScopeCollection scopes; 
        ContractTypeNameCollection contractTypeNames;
        NonNullItemCollection extensions;
        bool enabled;
 
        public EndpointDiscoveryBehavior()
        { 
            this.enabled = true; 
        }
 
        public bool Enabled
        {
            get
            { 
                return this.enabled;
            } 
 
            set
            { 
                this.enabled = value;
            }
        }
 
        public Collection ContractTypeNames
        { 
            get 
            {
                if (this.contractTypeNames == null) 
                {
                    this.contractTypeNames = new ContractTypeNameCollection();
                }
 
                return this.contractTypeNames;
            } 
        } 

        public Collection Scopes 
        {
            get
            {
                if (this.scopes == null) 
                {
                    this.scopes = new ScopeCollection(); 
                } 
                return this.scopes;
            } 
        }

        public Collection Extensions
        { 
            get
            { 
                if (this.extensions == null) 
                {
                    this.extensions = new NonNullItemCollection(); 
                }

                return this.extensions;
            } 
        }
 
        internal Collection InternalContractTypeNames 
        {
            get 
            {
                return this.contractTypeNames;
            }
        } 

        internal Collection InternalScopes 
        { 
            get
            { 
                return this.scopes;
            }
        }
 
        internal Collection InternalExtensions
        { 
            get 
            {
                return this.extensions; 
            }
        }

        [SuppressMessage(FxCop.Category.Design, FxCop.Rule.InterfaceMethodsShouldBeCallableByChildTypes)] 
        void IEndpointBehavior.AddBindingParameters(ServiceEndpoint endpoint, BindingParameterCollection bindingParameters)
        { 
        } 

        [SuppressMessage(FxCop.Category.Design, FxCop.Rule.InterfaceMethodsShouldBeCallableByChildTypes)] 
        void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
        {
        }
 
        [SuppressMessage(FxCop.Category.Design, FxCop.Rule.InterfaceMethodsShouldBeCallableByChildTypes)]
        void IEndpointBehavior.ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher) 
        { 
        }
 
        [SuppressMessage(FxCop.Category.Design, FxCop.Rule.InterfaceMethodsShouldBeCallableByChildTypes)]
        void IEndpointBehavior.Validate(ServiceEndpoint endpoint)
        {
        } 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.


                        

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