InstancePersistenceException.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 / cdf / src / System.Runtime.DurableInstancing / System / Runtime / DurableInstancing / InstancePersistenceException.cs / 1305376 / InstancePersistenceException.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 InstancePersistenceException : Exception
    { 
        const string CommandNameName = "instancePersistenceCommandName";
 
        public InstancePersistenceException() : base(ToMessage(null)) 
        {
        } 

        public InstancePersistenceException(string message) : base(message)
        {
        } 

        public InstancePersistenceException(string message, Exception innerException) : base(message, innerException) 
        { 
        }
 
        public InstancePersistenceException(XName commandName)
            : this(commandName, ToMessage(commandName))
        {
        } 

        public InstancePersistenceException(XName commandName, Exception innerException) 
            : this(commandName, ToMessage(commandName), innerException) 
        {
        } 

        public InstancePersistenceException(XName commandName, string message)
            : base(message)
        { 
            CommandName = commandName;
        } 
 
        public InstancePersistenceException(XName commandName, string message, Exception innerException)
            : base(message, innerException) 
        {
            CommandName = commandName;
        }
 
        [SecurityCritical]
        protected InstancePersistenceException(SerializationInfo info, StreamingContext context) 
            : base(info, context) 
        {
            CommandName = info.GetValue(CommandNameName, typeof(XName)) as XName; 
        }

        public XName CommandName { get; private set; }
 
        [Fx.Tag.SecurityNote(Critical = "Overrides critical inherited method")]
        [SecurityCritical] 
        [SuppressMessage(FxCop.Category.Security, FxCop.Rule.SecureGetObjectDataOverrides, 
            Justification = "Method is SecurityCritical")]
        public override void GetObjectData(SerializationInfo info, StreamingContext context) 
        {
            base.GetObjectData(info, context);
            info.AddValue(CommandNameName, CommandName, typeof(XName));
        } 

        static string ToMessage(XName commandName) 
        { 
            return commandName == null ? SRCore.GenericInstanceCommandNull : SRCore.GenericInstanceCommand(commandName);
        } 
    }
}

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