HostingEnvironmentException.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / Hosting / HostingEnvironmentException.cs / 1 / HostingEnvironmentException.cs

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

namespace System.Web.Hosting { 
    using System; 
    using System.Runtime.Serialization;
    using System.Security.Permissions; 

    [Serializable]
    internal class HostingEnvironmentException : Exception {
 
        private String _details;
 
        protected HostingEnvironmentException(SerializationInfo info, StreamingContext context) : base(info, context) { 
           _details = info.GetString("_details");
        } 

        [SecurityPermissionAttribute(SecurityAction.Demand, SerializationFormatter=true)]
        public override void GetObjectData(SerializationInfo info, StreamingContext context) {
            base.GetObjectData(info, context); 
            info.AddValue("_details", _details);
        } 
 
        internal HostingEnvironmentException(String message, String details) : base(message) {
            _details = details; 
        }

        internal String Details {
            get { return (_details != null) ? _details : String.Empty; } 
        }
    } 
} 

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