WebHttpEndpoint.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 / NetFx35 / System.ServiceModel.Web / System / ServiceModel / Description / WebHttpEndpoint.cs / 1305376 / WebHttpEndpoint.cs

                            //------------------------------------------------------------ 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------

namespace System.ServiceModel.Description 
{
    using System; 
    using System.Globalization; 
    using System.ServiceModel;
    using System.ServiceModel.Dispatcher; 
    using System.ServiceModel.Channels;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.ServiceModel.Web; 
    using System.Text;
    using System.Xml; 
 
    [DebuggerDisplay("Address={address}")]
    [DebuggerDisplay("Name={name}")] 
    public class WebHttpEndpoint : WebServiceEndpoint
    {
        static Type WebHttpEndpointType = typeof(WebHttpEndpoint);
 
        public WebHttpEndpoint(ContractDescription contract) :
            this(contract, null /* address */) 
        { } 

        public WebHttpEndpoint(ContractDescription contract, EndpointAddress address) 
            : base(contract, address)
        {
            this.Behaviors.Add(new WebHttpBehavior());
        } 

        public bool HelpEnabled 
        { 
            get { return this.webHttpBehavior.HelpEnabled; }
            set { this.webHttpBehavior.HelpEnabled = value; } 
        }

        public WebMessageFormat DefaultOutgoingResponseFormat
        { 
            get { return this.webHttpBehavior.DefaultOutgoingResponseFormat; }
            set { this.webHttpBehavior.DefaultOutgoingResponseFormat = value; } 
        } 

        public bool AutomaticFormatSelectionEnabled 
        {
            get { return this.webHttpBehavior.AutomaticFormatSelectionEnabled; }
            set { this.webHttpBehavior.AutomaticFormatSelectionEnabled = value; }
        } 

        public bool FaultExceptionEnabled 
        { 
            get { return this.webHttpBehavior.FaultExceptionEnabled; }
            set { this.webHttpBehavior.FaultExceptionEnabled = value; } 
        }

        WebHttpBehavior webHttpBehavior
        { 
            get
            { 
                WebHttpBehavior webHttpBehavior = this.Behaviors.Find(); 
                if (webHttpBehavior == null)
                { 
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR2.GetString(SR2.WebBehaviorNotFoundWithEndpoint, typeof(WebHttpEndpoint).Name, typeof(WebHttpBehavior).Name)));
                }
                return webHttpBehavior;
            } 
        }
 
        protected override Type WebEndpointType 
        {
            get { return WebHttpEndpointType; } 
        }
    }

} 

// 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