ErrorWrapper.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Runtime / InteropServices / ErrorWrapper.cs / 1305376 / ErrorWrapper.cs

                            // ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
/*==============================================================================
** 
** Class: ErrorWrapper. 
**
** 
** Purpose: Wrapper that is converted to a variant with VT_ERROR.
**
**
=============================================================================*/ 

namespace System.Runtime.InteropServices { 
 
    using System;
    using System.Security.Permissions; 

    [Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
    public sealed class ErrorWrapper 
    {
        public ErrorWrapper(int errorCode) 
        { 
            m_ErrorCode = errorCode;
        } 

        public ErrorWrapper(Object errorCode)
        {
            if (!(errorCode is int)) 
                throw new ArgumentException(Environment.GetResourceString("Arg_MustBeInt32"), "errorCode");
            m_ErrorCode = (int)errorCode; 
        } 

        [System.Security.SecuritySafeCritical]  // auto-generated 
        [SecurityPermissionAttribute(SecurityAction.Demand, Flags=SecurityPermissionFlag.UnmanagedCode)]
        public ErrorWrapper(Exception e)
        {
            m_ErrorCode = Marshal.GetHRForException(e); 
        }
 
        public int ErrorCode 
        {
            get 
            {
                return m_ErrorCode;
            }
        } 

        private int m_ErrorCode; 
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
/*==============================================================================
** 
** Class: ErrorWrapper. 
**
** 
** Purpose: Wrapper that is converted to a variant with VT_ERROR.
**
**
=============================================================================*/ 

namespace System.Runtime.InteropServices { 
 
    using System;
    using System.Security.Permissions; 

    [Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
    public sealed class ErrorWrapper 
    {
        public ErrorWrapper(int errorCode) 
        { 
            m_ErrorCode = errorCode;
        } 

        public ErrorWrapper(Object errorCode)
        {
            if (!(errorCode is int)) 
                throw new ArgumentException(Environment.GetResourceString("Arg_MustBeInt32"), "errorCode");
            m_ErrorCode = (int)errorCode; 
        } 

        [System.Security.SecuritySafeCritical]  // auto-generated 
        [SecurityPermissionAttribute(SecurityAction.Demand, Flags=SecurityPermissionFlag.UnmanagedCode)]
        public ErrorWrapper(Exception e)
        {
            m_ErrorCode = Marshal.GetHRForException(e); 
        }
 
        public int ErrorCode 
        {
            get 
            {
                return m_ErrorCode;
            }
        } 

        private int m_ErrorCode; 
    } 
}

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