InstanceNotReadyException.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 / cdf / src / System.Runtime.DurableInstancing / System / Runtime / DurableInstancing / InstanceNotReadyException.cs / 1305376 / InstanceNotReadyException.cs

                            //------------------------------------------------------------ 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------
namespace System.Runtime.DurableInstancing
{ 
    using System.Diagnostics.CodeAnalysis;
    using System.Runtime.Serialization; 
    using System.Security; 
    using System.Xml.Linq;
 
    [Serializable]
    public class InstanceNotReadyException : InstancePersistenceCommandException
    {
        public InstanceNotReadyException() 
            : this(SRCore.InstanceNotReadyDefault, null)
        { 
        } 

        public InstanceNotReadyException(string message) 
            : this(message, null)
        {
        }
 
        public InstanceNotReadyException(string message, Exception innerException)
            : base(message, innerException) 
        { 
        }
 
        public InstanceNotReadyException(XName commandName, Guid instanceId)
            : this(commandName, instanceId, null)
        {
        } 

        public InstanceNotReadyException(XName commandName, Guid instanceId, Exception innerException) 
            : this(commandName, instanceId, ToMessage(instanceId), innerException) 
        {
        } 

        public InstanceNotReadyException(XName commandName, Guid instanceId, string message, Exception innerException)
            : base(commandName, instanceId, message, innerException)
        { 
        }
 
        [SecurityCritical] 
        protected InstanceNotReadyException(SerializationInfo info, StreamingContext context)
            : base(info, context) 
        {
        }

        static string ToMessage(Guid instanceId) 
        {
            if (instanceId != Guid.Empty) 
            { 
                return SRCore.InstanceNotReadySpecific(instanceId);
            } 
            return SRCore.InstanceNotReadyDefault;
        }
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------ 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------
namespace System.Runtime.DurableInstancing
{ 
    using System.Diagnostics.CodeAnalysis;
    using System.Runtime.Serialization; 
    using System.Security; 
    using System.Xml.Linq;
 
    [Serializable]
    public class InstanceNotReadyException : InstancePersistenceCommandException
    {
        public InstanceNotReadyException() 
            : this(SRCore.InstanceNotReadyDefault, null)
        { 
        } 

        public InstanceNotReadyException(string message) 
            : this(message, null)
        {
        }
 
        public InstanceNotReadyException(string message, Exception innerException)
            : base(message, innerException) 
        { 
        }
 
        public InstanceNotReadyException(XName commandName, Guid instanceId)
            : this(commandName, instanceId, null)
        {
        } 

        public InstanceNotReadyException(XName commandName, Guid instanceId, Exception innerException) 
            : this(commandName, instanceId, ToMessage(instanceId), innerException) 
        {
        } 

        public InstanceNotReadyException(XName commandName, Guid instanceId, string message, Exception innerException)
            : base(commandName, instanceId, message, innerException)
        { 
        }
 
        [SecurityCritical] 
        protected InstanceNotReadyException(SerializationInfo info, StreamingContext context)
            : base(info, context) 
        {
        }

        static string ToMessage(Guid instanceId) 
        {
            if (instanceId != Guid.Empty) 
            { 
                return SRCore.InstanceNotReadySpecific(instanceId);
            } 
            return SRCore.InstanceNotReadyDefault;
        }
    }
} 

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