HttpResponseMessageProperty.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 / HttpResponseMessageProperty.cs / 1 / HttpResponseMessageProperty.cs

                            //---------------------------------------------------------------------------- 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//---------------------------------------------------------------------------
namespace System.ServiceModel.Channels
{ 
    using System;
    using System.Net; 
 
    public sealed class HttpResponseMessageProperty
    { 
        WebHeaderCollection headers;
        WebHeaderCollection originalHeaders;
        HttpStatusCode statusCode;
        string statusDescription; 
        bool suppressEntityBody;
 
        internal HttpResponseMessageProperty(WebHeaderCollection originalHeaders) 
            : this()
        { 
            this.originalHeaders = originalHeaders;
        }

        public HttpResponseMessageProperty() 
        {
            this.statusCode = HttpStatusCode.OK; 
            this.statusDescription = null; // null means use description from status code 
            this.suppressEntityBody = false;
        } 

        public static string Name
        {
            get { return "httpResponse"; } 
        }
 
        public WebHeaderCollection Headers 
        {
            get 
            {
                if (this.headers == null)
                {
                    this.headers = new WebHeaderCollection(); 
                    if (this.originalHeaders != null)
                    { 
                        this.headers.Add(originalHeaders); 
                        this.originalHeaders = null;
                    } 
                }
                return this.headers;
            }
        } 

        public HttpStatusCode StatusCode 
        { 
            get
            { 
                return this.statusCode;
            }

            set 
            {
                int valueInt = (int)value; 
                if (valueInt < 100 || valueInt > 599) 
                {
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("value", value, 
                        SR.GetString(SR.ValueMustBeInRange, 100, 599)));
                }

                this.statusCode = value; 
            }
        } 
 
        public string StatusDescription
        { 
            get
            {
                return this.statusDescription;
            } 

            set 
            { 
                this.statusDescription = value;
            } 
        }

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

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