TypeInitializationException.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / clr / src / BCL / System / TypeInitializationException.cs / 1 / TypeInitializationException.cs

                            // ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
/*==============================================================================
** 
** Class: TypeInitializationException 
**
** 
** Purpose: The exception class to wrap exceptions thrown by
**          a type's class initializer (.cctor).  This is sufficiently
**          distinct from a TypeLoadException, which means we couldn't
**          find the type. 
**
** 
=============================================================================*/ 
using System;
using System.Runtime.Serialization; 
using System.Globalization;
using System.Security.Permissions;

namespace System { 
    [Serializable()]
[System.Runtime.InteropServices.ComVisible(true)] 
    public sealed class TypeInitializationException : SystemException { 
        private String _typeName;
 
      // This exception is not creatable without specifying the
      // inner exception.
      private TypeInitializationException()
           : base(Environment.GetResourceString("TypeInitialization_Default")) { 
         SetErrorCode(__HResults.COR_E_TYPEINITIALIZATION);
      } 
 
       // This is called from within the runtime.  I believe this is necessary
        // for Interop only, though it's not particularly useful. 
        private TypeInitializationException(String message) : base(message) {
         SetErrorCode(__HResults.COR_E_TYPEINITIALIZATION);
        }
 
        public TypeInitializationException(String fullTypeName, Exception innerException) : base(String.Format(CultureInfo.CurrentCulture, Environment.GetResourceString("TypeInitialization_Type"), fullTypeName), innerException) {
            _typeName = fullTypeName; 
         SetErrorCode(__HResults.COR_E_TYPEINITIALIZATION); 
        }
 
        internal TypeInitializationException(SerializationInfo info, StreamingContext context) : base(info, context) {
            _typeName = info.GetString("TypeName");
        }
 
        public String TypeName
        { 
            get { 
                if (_typeName == null) {
                    return String.Empty; 
                }
                return _typeName;
            }
        } 

        [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter)] 
        public override void GetObjectData(SerializationInfo info, StreamingContext context) { 
            base.GetObjectData(info, context);
            info.AddValue("TypeName",TypeName,typeof(String)); 
        }

    }
} 

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