HttpRequestMessageProperty.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 / Channels / HttpRequestMessageProperty.cs / 2 / HttpRequestMessageProperty.cs

                            //---------------------------------------------------------------------------- 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//---------------------------------------------------------------------------
namespace System.ServiceModel.Channels
{ 
    using System;
    using System.Net; 
    using System.ServiceModel.Activation; 
    using System.Collections.Specialized;
 
    public sealed class HttpRequestMessageProperty
    {
        WebHeaderCollection headers;
        string method; 
        string queryString;
        bool suppressEntityBody; 
        HttpListenerRequest listenerRequest; 
        HostedRequestContainer hostedRequestContainer;
 
        internal HttpRequestMessageProperty(HttpListenerRequest listenerRequest)
            : this()
        {
            this.listenerRequest = listenerRequest; 
        }
 
        internal HttpRequestMessageProperty(HostedRequestContainer hostedRequest) 
            : this()
        { 
            this.hostedRequestContainer = hostedRequest;
        }

        public HttpRequestMessageProperty() 
        {
            this.method = "POST"; 
            this.queryString = string.Empty; 
            this.suppressEntityBody = false;
        } 

        public static string Name
        {
            get { return "httpRequest"; } 
        }
 
        public WebHeaderCollection Headers 
        {
            get 
            {
                if (this.headers == null)
                {
                    this.headers = new WebHeaderCollection(); 
                    if (this.listenerRequest != null)
                    { 
                        this.headers.Add(this.listenerRequest.Headers); 
                        // MB 57988 - System.Net strips off user-agent from the headers collection
                        if (this.listenerRequest.UserAgent != null && this.headers[HttpRequestHeader.UserAgent] == null) 
                        {
                            this.headers.Add(HttpRequestHeader.UserAgent, this.listenerRequest.UserAgent);
                        }
 
                        this.listenerRequest = null;
                    } 
                    else if (this.hostedRequestContainer != null) 
                    {
                        this.hostedRequestContainer.CopyHeaders(this.headers); 
                        this.hostedRequestContainer = null;
                    }
                }
                return this.headers; 
            }
        } 
 
        public string Method
        { 
            get
            {
                return this.method;
            } 

            set 
            { 
                if (value == null)
                { 
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("value");
                }

                this.method = value; 
            }
        } 
 
        public string QueryString
        { 
            get
            {
                return this.queryString;
            } 

            set 
            { 
                if (value == null)
                { 
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("value");
                }

                this.queryString = value; 
            }
        } 
 

        public bool SuppressEntityBody 
        {
            get
            {
                return this.suppressEntityBody; 
            }
 
            set 
            {
                this.suppressEntityBody = value; 
            }
        }

        internal void MakeRequestContainerNull() 
        {
            this.hostedRequestContainer = null; 
        } 
    }
} 

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