You've already forked linux-packaging-mono
Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
82
external/referencesource/System.Workflow.Runtime/WorkflowOwnershipException.cs
vendored
Normal file
82
external/referencesource/System.Workflow.Runtime/WorkflowOwnershipException.cs
vendored
Normal file
@ -0,0 +1,82 @@
|
||||
using System;
|
||||
using System.Globalization;
|
||||
using System.Workflow.ComponentModel;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Security.Permissions;
|
||||
using System.Xml;
|
||||
using System.Xml.Schema;
|
||||
|
||||
namespace System.Workflow.Runtime
|
||||
{
|
||||
#region State Persistence Exceptions
|
||||
|
||||
[Serializable]
|
||||
[Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")]
|
||||
public class WorkflowOwnershipException : Exception
|
||||
{
|
||||
private Guid _instanceId;
|
||||
public Guid InstanceId
|
||||
{
|
||||
get
|
||||
{
|
||||
return _instanceId;
|
||||
}
|
||||
set
|
||||
{
|
||||
_instanceId = value;
|
||||
}
|
||||
}
|
||||
public WorkflowOwnershipException()
|
||||
: base(ExecutionStringManager.WorkflowOwnershipException)
|
||||
{ }
|
||||
|
||||
public WorkflowOwnershipException(string message)
|
||||
: base(message)
|
||||
{ }
|
||||
|
||||
public WorkflowOwnershipException(string message, Exception innerException)
|
||||
: base(message, innerException)
|
||||
{ }
|
||||
|
||||
public WorkflowOwnershipException(Guid instanceId)
|
||||
: base(ExecutionStringManager.WorkflowOwnershipException)
|
||||
{
|
||||
this.InstanceId = instanceId;
|
||||
}
|
||||
|
||||
public WorkflowOwnershipException(Guid instanceId, string message)
|
||||
: base(message)
|
||||
{
|
||||
this.InstanceId = instanceId;
|
||||
}
|
||||
|
||||
public WorkflowOwnershipException(Guid instanceId, string message, Exception innerException)
|
||||
: base(message, innerException)
|
||||
{
|
||||
this.InstanceId = instanceId;
|
||||
}
|
||||
|
||||
[SecurityPermissionAttribute(SecurityAction.Demand, SerializationFormatter = true)]
|
||||
protected WorkflowOwnershipException(SerializationInfo info, StreamingContext context)
|
||||
: base(info, context)
|
||||
{
|
||||
_instanceId = (Guid)info.GetValue("__instanceId__", typeof(Guid));
|
||||
}
|
||||
|
||||
//ISerializable override to store custom state
|
||||
[SecurityPermissionAttribute(SecurityAction.Demand, SerializationFormatter = true)]
|
||||
public override void GetObjectData(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
if (null == info)
|
||||
throw new ArgumentNullException("info");
|
||||
|
||||
base.GetObjectData(info, context);
|
||||
info.AddValue("__instanceId__", _instanceId);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
Reference in New Issue
Block a user