WorkflowValidationFailedException.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 / WF / Common / AuthoringOM / Compiler / Validation / WorkflowValidationFailedException.cs / 1305376 / WorkflowValidationFailedException.cs

                            namespace System.Workflow.ComponentModel.Compiler 
{
    using System;
    using System.Runtime.Serialization;
    using System.Collections.Generic; 
    using System.Security.Permissions;
 
    [Serializable()] 
    public sealed class WorkflowValidationFailedException : Exception
    { 
        private ValidationErrorCollection errors = null;

        private WorkflowValidationFailedException(SerializationInfo info, StreamingContext context)
            : base(info, context) 
        {
            if (info == null) 
                throw new ArgumentNullException("info"); 

            this.errors = (ValidationErrorCollection)info.GetValue("errors", typeof(ValidationErrorCollection)); 

            if (this.errors == null)
                throw new SerializationException(SR.GetString(SR.Error_SerializationInsufficientState));
        } 

        public WorkflowValidationFailedException() 
            : base(SR.GetString(SR.Error_WorkflowLoadValidationFailed)) 
        {
        } 

        public WorkflowValidationFailedException(string message)
            : base(message)
        { 
        }
 
        public WorkflowValidationFailedException(string message, Exception innerException) 
            : base(message, innerException)
        { 
        }

        public WorkflowValidationFailedException(string message, ValidationErrorCollection errors)
            : base(message) 
        {
            if (errors == null) 
                throw new ArgumentNullException("errors"); 

            this.errors = XomlCompilerHelper.MorphIntoFriendlyValidationErrors(errors); 
        }

        public override void GetObjectData(SerializationInfo info, StreamingContext context)
        { 
            if (info == null)
                throw new ArgumentNullException("info"); 
 
            base.GetObjectData(info, context);
 
            //ValidationErrorCollection is serializable
            info.AddValue("errors", this.errors, typeof(ValidationErrorCollection));
        }
 
        public ValidationErrorCollection Errors
        { 
            get 
            {
                return this.errors; 
            }
        }
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
namespace System.Workflow.ComponentModel.Compiler 
{
    using System;
    using System.Runtime.Serialization;
    using System.Collections.Generic; 
    using System.Security.Permissions;
 
    [Serializable()] 
    public sealed class WorkflowValidationFailedException : Exception
    { 
        private ValidationErrorCollection errors = null;

        private WorkflowValidationFailedException(SerializationInfo info, StreamingContext context)
            : base(info, context) 
        {
            if (info == null) 
                throw new ArgumentNullException("info"); 

            this.errors = (ValidationErrorCollection)info.GetValue("errors", typeof(ValidationErrorCollection)); 

            if (this.errors == null)
                throw new SerializationException(SR.GetString(SR.Error_SerializationInsufficientState));
        } 

        public WorkflowValidationFailedException() 
            : base(SR.GetString(SR.Error_WorkflowLoadValidationFailed)) 
        {
        } 

        public WorkflowValidationFailedException(string message)
            : base(message)
        { 
        }
 
        public WorkflowValidationFailedException(string message, Exception innerException) 
            : base(message, innerException)
        { 
        }

        public WorkflowValidationFailedException(string message, ValidationErrorCollection errors)
            : base(message) 
        {
            if (errors == null) 
                throw new ArgumentNullException("errors"); 

            this.errors = XomlCompilerHelper.MorphIntoFriendlyValidationErrors(errors); 
        }

        public override void GetObjectData(SerializationInfo info, StreamingContext context)
        { 
            if (info == null)
                throw new ArgumentNullException("info"); 
 
            base.GetObjectData(info, context);
 
            //ValidationErrorCollection is serializable
            info.AddValue("errors", this.errors, typeof(ValidationErrorCollection));
        }
 
        public ValidationErrorCollection Errors
        { 
            get 
            {
                return this.errors; 
            }
        }
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

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