DuplicateWaitObjectException.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 / DuplicateWaitObjectException.cs / 1305376 / DuplicateWaitObjectException.cs

                            // ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
/*==============================================================================
** 
** Class: DuplicateWaitObjectException 
**
** 
** Purpose: Exception class for duplicate objects in WaitAll/WaitAny.
**
**
=============================================================================*/ 

namespace System { 
 
    using System;
    using System.Runtime.Remoting; 
    using System.Runtime.Serialization;

    // The DuplicateWaitObjectException is thrown when an object
    // appears more than once in the list of objects to WaitAll or WaitAny. 
    //
[System.Runtime.InteropServices.ComVisible(true)] 
    [Serializable] 
    public class DuplicateWaitObjectException : ArgumentException {
 
        private static String _duplicateWaitObjectMessage = null;

        private static String DuplicateWaitObjectMessage {
            get { 
                if (_duplicateWaitObjectMessage == null)
                    _duplicateWaitObjectMessage = Environment.GetResourceString("Arg_DuplicateWaitObjectException"); 
                return _duplicateWaitObjectMessage; 
            }
        } 

        // Creates a new DuplicateWaitObjectException with its message
        // string set to a default message.
        public DuplicateWaitObjectException() 
            : base(DuplicateWaitObjectMessage) {
            SetErrorCode(__HResults.COR_E_DUPLICATEWAITOBJECT); 
        } 

        public DuplicateWaitObjectException(String parameterName) 
            : base(DuplicateWaitObjectMessage, parameterName) {
            SetErrorCode(__HResults.COR_E_DUPLICATEWAITOBJECT);
        }
 
        public DuplicateWaitObjectException(String parameterName, String message)
            : base(message, parameterName) { 
            SetErrorCode(__HResults.COR_E_DUPLICATEWAITOBJECT); 
        }
 
        public DuplicateWaitObjectException(String message, Exception innerException)
            : base(message, innerException) {
            SetErrorCode(__HResults.COR_E_DUPLICATEWAITOBJECT);
        } 

        // This constructor is required for serialization 
        [System.Security.SecuritySafeCritical]  // auto-generated 
        protected DuplicateWaitObjectException(SerializationInfo info, StreamingContext context) : base (info, context) {
        } 
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
/*==============================================================================
** 
** Class: DuplicateWaitObjectException 
**
** 
** Purpose: Exception class for duplicate objects in WaitAll/WaitAny.
**
**
=============================================================================*/ 

namespace System { 
 
    using System;
    using System.Runtime.Remoting; 
    using System.Runtime.Serialization;

    // The DuplicateWaitObjectException is thrown when an object
    // appears more than once in the list of objects to WaitAll or WaitAny. 
    //
[System.Runtime.InteropServices.ComVisible(true)] 
    [Serializable] 
    public class DuplicateWaitObjectException : ArgumentException {
 
        private static String _duplicateWaitObjectMessage = null;

        private static String DuplicateWaitObjectMessage {
            get { 
                if (_duplicateWaitObjectMessage == null)
                    _duplicateWaitObjectMessage = Environment.GetResourceString("Arg_DuplicateWaitObjectException"); 
                return _duplicateWaitObjectMessage; 
            }
        } 

        // Creates a new DuplicateWaitObjectException with its message
        // string set to a default message.
        public DuplicateWaitObjectException() 
            : base(DuplicateWaitObjectMessage) {
            SetErrorCode(__HResults.COR_E_DUPLICATEWAITOBJECT); 
        } 

        public DuplicateWaitObjectException(String parameterName) 
            : base(DuplicateWaitObjectMessage, parameterName) {
            SetErrorCode(__HResults.COR_E_DUPLICATEWAITOBJECT);
        }
 
        public DuplicateWaitObjectException(String parameterName, String message)
            : base(message, parameterName) { 
            SetErrorCode(__HResults.COR_E_DUPLICATEWAITOBJECT); 
        }
 
        public DuplicateWaitObjectException(String message, Exception innerException)
            : base(message, innerException) {
            SetErrorCode(__HResults.COR_E_DUPLICATEWAITOBJECT);
        } 

        // This constructor is required for serialization 
        [System.Security.SecuritySafeCritical]  // auto-generated 
        protected DuplicateWaitObjectException(SerializationInfo info, StreamingContext context) : base (info, context) {
        } 
    }
}

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