RemotingException.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Runtime / Remoting / RemotingException.cs / 1305376 / RemotingException.cs

                            // ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
/*==============================================================================
** 
** Class: RemotingException 
**
** 
** Purpose: Exception class for remoting
**
**
=============================================================================*/ 

namespace System.Runtime.Remoting 
{ 
    using System.Runtime.Remoting;
    using System; 
    using System.Runtime.Serialization;
    // The Exception thrown when something has gone
    // wrong during remoting
    // 
    [Serializable]
[System.Runtime.InteropServices.ComVisible(true)] 
    public class RemotingException : SystemException { 

        private static String _nullMessage = Environment.GetResourceString("Remoting_Default"); 

        // Creates a new RemotingException with its message
        // string set to a default message.
        public RemotingException() 
                : base(_nullMessage) {
            SetErrorCode(__HResults.COR_E_REMOTING); 
        } 

        public RemotingException(String message) 
                : base(message) {
            SetErrorCode(__HResults.COR_E_REMOTING);
        }
 

        public RemotingException(String message, Exception InnerException) 
                : base(message, InnerException) { 
            SetErrorCode(__HResults.COR_E_REMOTING);
        } 

        [System.Security.SecuritySafeCritical]  // auto-generated
        protected RemotingException(SerializationInfo info, StreamingContext context) : base(info, context) {}
    } 

 
 

    // The Exception thrown when something has gone 
    // wrong on the server during remoting. This exception is thrown
    // on the client.
    //
    [Serializable] 
[System.Runtime.InteropServices.ComVisible(true)]
    public class ServerException : SystemException { 
        private static String _nullMessage = Environment.GetResourceString("Remoting_Default"); 
        // Creates a new ServerException with its message
        // string set to a default message. 
        public ServerException()
                : base(_nullMessage) {
            SetErrorCode(__HResults.COR_E_SERVER);
        } 

        public ServerException(String message) 
                : base(message) { 
            SetErrorCode(__HResults.COR_E_SERVER);
        } 


        public ServerException(String message, Exception InnerException)
                : base(message, InnerException) { 
            SetErrorCode(__HResults.COR_E_SERVER);
        } 
 
        internal ServerException(SerializationInfo info, StreamingContext context) : base(info, context) {}
    } 


    [Serializable]
[System.Runtime.InteropServices.ComVisible(true)] 
    public class RemotingTimeoutException : RemotingException {
 
        private static String _nullMessage = Environment.GetResourceString("Remoting_Default"); 

        // Creates a new RemotingException with its message 
        // string set to a default message.
        public RemotingTimeoutException() : base(_nullMessage)
        {
        } 

        public RemotingTimeoutException(String message) : base(message) { 
            SetErrorCode(__HResults.COR_E_REMOTING); 
        }
 

        public RemotingTimeoutException(String message, Exception InnerException)
            : base(message, InnerException)
        { 
            SetErrorCode(__HResults.COR_E_REMOTING);
        } 
 
        internal RemotingTimeoutException(SerializationInfo info, StreamingContext context) : base(info, context) {}
 
    } // RemotingTimeoutException

}

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