1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 [assembly:System.Reflection.AssemblyVersionAttribute("4.0.0.0")]
6 [assembly:System.CLSCompliantAttribute(true)]
7 [assembly:System.Reflection.AssemblyCompanyAttribute("MONO development team")]
8 [assembly:System.Reflection.AssemblyConfigurationAttribute("Development version")]
9 [assembly:System.Reflection.AssemblyCopyrightAttribute("(c) 2003 Various Authors")]
10 [assembly:System.Reflection.AssemblyDefaultAliasAttribute("System.Runtime.DurableInstancing.dll")]
11 [assembly:System.Reflection.AssemblyDescriptionAttribute("System.Runtime.DurableInstancing.dll")]
12 [assembly:System.Reflection.AssemblyInformationalVersionAttribute("3.5.594.0")]
13 [assembly:System.Reflection.AssemblyProductAttribute("MONO CLI")]
14 [assembly:System.Reflection.AssemblyTitleAttribute("System.Runtime.DurableInstancing.dll")]
15 [assembly:System.Reflection.AssemblyTrademarkAttribute("")]
16 [assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
17 [assembly:System.Resources.SatelliteContractVersionAttribute("4.0.0.0")]
18 [assembly:System.Runtime.CompilerServices.ReferenceAssemblyAttribute]
19 [assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
20 [assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
21 namespace System
22 {
23     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
24     internal partial class MonoDocumentationNoteAttribute : System.MonoTODOAttribute
25     {
MonoDocumentationNoteAttribute(string comment)26         public MonoDocumentationNoteAttribute(string comment) { }
27     }
28     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
29     internal partial class MonoExtensionAttribute : System.MonoTODOAttribute
30     {
MonoExtensionAttribute(string comment)31         public MonoExtensionAttribute(string comment) { }
32     }
33     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
34     internal partial class MonoInternalNoteAttribute : System.MonoTODOAttribute
35     {
MonoInternalNoteAttribute(string comment)36         public MonoInternalNoteAttribute(string comment) { }
37     }
38     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
39     internal partial class MonoLimitationAttribute : System.MonoTODOAttribute
40     {
MonoLimitationAttribute(string comment)41         public MonoLimitationAttribute(string comment) { }
42     }
43     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
44     internal partial class MonoNotSupportedAttribute : System.MonoTODOAttribute
45     {
MonoNotSupportedAttribute(string comment)46         public MonoNotSupportedAttribute(string comment) { }
47     }
48     [System.AttributeUsageAttribute((System.AttributeTargets)(32767), AllowMultiple=true)]
49     internal partial class MonoTODOAttribute : System.Attribute
50     {
MonoTODOAttribute()51         public MonoTODOAttribute() { }
MonoTODOAttribute(string comment)52         public MonoTODOAttribute(string comment) { }
53         public string Comment { get { throw null; } }
54     }
55 }
56 namespace System.Runtime.DurableInstancing
57 {
58     [System.SerializableAttribute]
59     public partial class InstanceCollisionException : System.Runtime.DurableInstancing.InstancePersistenceCommandException
60     {
InstanceCollisionException()61         public InstanceCollisionException() { }
InstanceCollisionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)62         protected InstanceCollisionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InstanceCollisionException(string msg)63         public InstanceCollisionException(string msg) { }
InstanceCollisionException(string msg, System.Exception inner)64         public InstanceCollisionException(string msg, System.Exception inner) { }
65     }
66     [System.SerializableAttribute]
67     public partial class InstanceCompleteException : System.Runtime.DurableInstancing.InstancePersistenceCommandException
68     {
InstanceCompleteException()69         public InstanceCompleteException() { }
InstanceCompleteException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)70         protected InstanceCompleteException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InstanceCompleteException(string msg)71         public InstanceCompleteException(string msg) { }
InstanceCompleteException(string msg, System.Exception inner)72         public InstanceCompleteException(string msg, System.Exception inner) { }
73     }
74     public sealed partial class InstanceHandle
75     {
InstanceHandle()76         internal InstanceHandle() { }
77         public bool IsValid { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
Free()78         public void Free() { }
79     }
80     [System.SerializableAttribute]
81     public partial class InstanceHandleConflictException : System.Runtime.DurableInstancing.InstancePersistenceCommandException
82     {
InstanceHandleConflictException()83         public InstanceHandleConflictException() { }
InstanceHandleConflictException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)84         protected InstanceHandleConflictException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InstanceHandleConflictException(string msg)85         public InstanceHandleConflictException(string msg) { }
InstanceHandleConflictException(string msg, System.Exception inner)86         public InstanceHandleConflictException(string msg, System.Exception inner) { }
87     }
88     public partial class InstanceKey
89     {
InstanceKey(System.Guid value)90         public InstanceKey(System.Guid value) { }
InstanceKey(System.Guid value, System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue> metadata)91         public InstanceKey(System.Guid value, System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue> metadata) { }
92         public static System.Runtime.DurableInstancing.InstanceKey InvalidKey { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
93         public bool IsValid { get { throw null; } }
94         public System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue> Metadata { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
95         public System.Guid Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
Equals(object obj)96         public override bool Equals(object obj) { throw null; }
GetHashCode()97         public override int GetHashCode() { throw null; }
98     }
99     [System.SerializableAttribute]
100     public partial class InstanceKeyCollisionException : System.Runtime.DurableInstancing.InstancePersistenceCommandException
101     {
InstanceKeyCollisionException()102         public InstanceKeyCollisionException() { }
InstanceKeyCollisionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)103         protected InstanceKeyCollisionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InstanceKeyCollisionException(string msg)104         public InstanceKeyCollisionException(string msg) { }
InstanceKeyCollisionException(string msg, System.Exception inner)105         public InstanceKeyCollisionException(string msg, System.Exception inner) { }
106     }
107     [System.SerializableAttribute]
108     public partial class InstanceKeyCompleteException : System.Runtime.DurableInstancing.InstancePersistenceCommandException
109     {
InstanceKeyCompleteException()110         public InstanceKeyCompleteException() { }
InstanceKeyCompleteException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)111         protected InstanceKeyCompleteException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InstanceKeyCompleteException(string msg)112         public InstanceKeyCompleteException(string msg) { }
InstanceKeyCompleteException(string msg, System.Exception inner)113         public InstanceKeyCompleteException(string msg, System.Exception inner) { }
114     }
115     [System.SerializableAttribute]
116     public partial class InstanceKeyNotReadyException : System.Runtime.DurableInstancing.InstancePersistenceCommandException
117     {
InstanceKeyNotReadyException()118         public InstanceKeyNotReadyException() { }
InstanceKeyNotReadyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)119         protected InstanceKeyNotReadyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InstanceKeyNotReadyException(string msg)120         public InstanceKeyNotReadyException(string msg) { }
InstanceKeyNotReadyException(string msg, System.Exception inner)121         public InstanceKeyNotReadyException(string msg, System.Exception inner) { }
122     }
123     public enum InstanceKeyState
124     {
125         Associated = 1,
126         Completed = 2,
127         Unknown = 0,
128     }
129     public sealed partial class InstanceKeyView
130     {
InstanceKeyView()131         internal InstanceKeyView() { }
132         public System.Guid InstanceKey { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
133         public System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue> InstanceKeyMetadata { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
134         public System.Runtime.DurableInstancing.InstanceValueConsistency InstanceKeyMetadataConsistency { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
135         public System.Runtime.DurableInstancing.InstanceKeyState InstanceKeyState { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
136     }
137     [System.SerializableAttribute]
138     public partial class InstanceLockedException : System.Runtime.DurableInstancing.InstancePersistenceCommandException
139     {
InstanceLockedException()140         public InstanceLockedException() { }
InstanceLockedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)141         protected InstanceLockedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InstanceLockedException(string msg)142         public InstanceLockedException(string msg) { }
InstanceLockedException(string msg, System.Exception inner)143         public InstanceLockedException(string msg, System.Exception inner) { }
144     }
145     [System.SerializableAttribute]
146     public partial class InstanceLockLostException : System.Runtime.DurableInstancing.InstancePersistenceCommandException
147     {
InstanceLockLostException()148         public InstanceLockLostException() { }
InstanceLockLostException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)149         protected InstanceLockLostException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InstanceLockLostException(string msg)150         public InstanceLockLostException(string msg) { }
InstanceLockLostException(string msg, System.Exception inner)151         public InstanceLockLostException(string msg, System.Exception inner) { }
152     }
153     public sealed partial class InstanceLockQueryResult : System.Runtime.DurableInstancing.InstanceStoreQueryResult
154     {
InstanceLockQueryResult()155         public InstanceLockQueryResult() { }
InstanceLockQueryResult(System.Collections.Generic.IDictionary<System.Guid, System.Guid> instanceOwnerIds)156         public InstanceLockQueryResult(System.Collections.Generic.IDictionary<System.Guid, System.Guid> instanceOwnerIds) { }
InstanceLockQueryResult(System.Guid instanceId, System.Guid instanceOwnerId)157         public InstanceLockQueryResult(System.Guid instanceId, System.Guid instanceOwnerId) { }
158         public System.Collections.Generic.IDictionary<System.Guid, System.Guid> InstanceOwnerIds { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
159     }
160     [System.SerializableAttribute]
161     public partial class InstanceNotReadyException : System.Runtime.DurableInstancing.InstancePersistenceCommandException
162     {
InstanceNotReadyException()163         public InstanceNotReadyException() { }
InstanceNotReadyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)164         protected InstanceNotReadyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InstanceNotReadyException(string msg)165         public InstanceNotReadyException(string msg) { }
InstanceNotReadyException(string msg, System.Exception inner)166         public InstanceNotReadyException(string msg, System.Exception inner) { }
167     }
168     public sealed partial class InstanceOwner
169     {
InstanceOwner()170         internal InstanceOwner() { }
171         public System.Guid InstanceOwnerId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
172     }
173     [System.SerializableAttribute]
174     public partial class InstanceOwnerException : System.Runtime.DurableInstancing.InstancePersistenceException
175     {
InstanceOwnerException()176         public InstanceOwnerException() { }
InstanceOwnerException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)177         protected InstanceOwnerException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InstanceOwnerException(string msg)178         public InstanceOwnerException(string msg) { }
InstanceOwnerException(string msg, System.Exception inner)179         public InstanceOwnerException(string msg, System.Exception inner) { }
180     }
181     public sealed partial class InstanceOwnerQueryResult : System.Runtime.DurableInstancing.InstanceStoreQueryResult
182     {
InstanceOwnerQueryResult()183         public InstanceOwnerQueryResult() { }
InstanceOwnerQueryResult(System.Collections.Generic.IDictionary<System.Guid, System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue>> instanceOwners)184         public InstanceOwnerQueryResult(System.Collections.Generic.IDictionary<System.Guid, System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue>> instanceOwners) { }
InstanceOwnerQueryResult(System.Guid instanceOwnerId, System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue> metadata)185         public InstanceOwnerQueryResult(System.Guid instanceOwnerId, System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue> metadata) { }
186         public System.Collections.Generic.IDictionary<System.Guid, System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue>> InstanceOwners { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
187     }
188     public abstract partial class InstancePersistenceCommand
189     {
InstancePersistenceCommand(System.Xml.Linq.XName name)190         protected InstancePersistenceCommand(System.Xml.Linq.XName name) { }
191         protected internal virtual bool AutomaticallyAcquiringLock { get { throw null; } }
192         protected internal virtual bool IsTransactionEnlistmentOptional { get { throw null; } }
193         public System.Xml.Linq.XName Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
Validate(System.Runtime.DurableInstancing.InstanceView view)194         protected internal virtual void Validate(System.Runtime.DurableInstancing.InstanceView view) { }
195     }
196     [System.SerializableAttribute]
197     public partial class InstancePersistenceCommandException : System.Runtime.DurableInstancing.InstancePersistenceException
198     {
InstancePersistenceCommandException()199         public InstancePersistenceCommandException() { }
InstancePersistenceCommandException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)200         protected InstancePersistenceCommandException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InstancePersistenceCommandException(string msg)201         public InstancePersistenceCommandException(string msg) { }
InstancePersistenceCommandException(string msg, System.Exception inner)202         public InstancePersistenceCommandException(string msg, System.Exception inner) { }
203     }
204     public sealed partial class InstancePersistenceContext
205     {
InstancePersistenceContext()206         internal InstancePersistenceContext() { }
207         public System.Runtime.DurableInstancing.InstanceHandle InstanceHandle { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
208         public long InstanceVersion { get { throw null; } }
209         public System.Runtime.DurableInstancing.InstanceView InstanceView { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
210         public System.Guid LockToken { get { throw null; } }
211         public object UserContext { get { throw null; } }
AssociatedInstanceKey(System.Guid key)212         public void AssociatedInstanceKey(System.Guid key) { }
BeginBindReclaimedLock(long instanceVersion, System.TimeSpan timeout, System.AsyncCallback callback, object state)213         public System.IAsyncResult BeginBindReclaimedLock(long instanceVersion, System.TimeSpan timeout, System.AsyncCallback callback, object state) { throw null; }
BeginExecute(System.Runtime.DurableInstancing.InstancePersistenceCommand command, System.TimeSpan timeout, System.AsyncCallback callback, object state)214         public System.IAsyncResult BeginExecute(System.Runtime.DurableInstancing.InstancePersistenceCommand command, System.TimeSpan timeout, System.AsyncCallback callback, object state) { throw null; }
BindAcquiredLock(long instanceVersion)215         public void BindAcquiredLock(long instanceVersion) { }
BindEvent(System.Runtime.DurableInstancing.InstancePersistenceEvent persistenceEvent)216         public void BindEvent(System.Runtime.DurableInstancing.InstancePersistenceEvent persistenceEvent) { }
BindInstance(System.Guid instanceId)217         public void BindInstance(System.Guid instanceId) { }
BindInstanceOwner(System.Guid instanceOwnerId, System.Guid lockToken)218         public void BindInstanceOwner(System.Guid instanceOwnerId, System.Guid lockToken) { }
BindReclaimedLock(long instanceVersion, System.TimeSpan timeout)219         public void BindReclaimedLock(long instanceVersion, System.TimeSpan timeout) { }
CompletedInstance()220         public void CompletedInstance() { }
CompletedInstanceKey(System.Guid key)221         public void CompletedInstanceKey(System.Guid key) { }
CreateBindReclaimedLockException(long instanceVersion)222         public System.Exception CreateBindReclaimedLockException(long instanceVersion) { throw null; }
EndBindReclaimedLock(System.IAsyncResult result)223         public void EndBindReclaimedLock(System.IAsyncResult result) { }
EndExecute(System.IAsyncResult result)224         public void EndExecute(System.IAsyncResult result) { }
Execute(System.Runtime.DurableInstancing.InstancePersistenceCommand command, System.TimeSpan timeout)225         public void Execute(System.Runtime.DurableInstancing.InstancePersistenceCommand command, System.TimeSpan timeout) { }
LoadedInstance(System.Runtime.DurableInstancing.InstanceState state, System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue> instanceData, System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue> instanceMetadata, System.Collections.Generic.IDictionary<System.Guid, System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue>> associatedInstanceKeyMetadata, System.Collections.Generic.IDictionary<System.Guid, System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue>> completedInstanceKeyMetadata)226         public void LoadedInstance(System.Runtime.DurableInstancing.InstanceState state, System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue> instanceData, System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue> instanceMetadata, System.Collections.Generic.IDictionary<System.Guid, System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue>> associatedInstanceKeyMetadata, System.Collections.Generic.IDictionary<System.Guid, System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue>> completedInstanceKeyMetadata) { }
PersistedInstance(System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue> data)227         public void PersistedInstance(System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue> data) { }
QueriedInstanceStore(System.Runtime.DurableInstancing.InstanceStoreQueryResult queryResult)228         public void QueriedInstanceStore(System.Runtime.DurableInstancing.InstanceStoreQueryResult queryResult) { }
ReadInstanceKeyMetadata(System.Guid key, System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue> metadata, bool complete)229         public void ReadInstanceKeyMetadata(System.Guid key, System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue> metadata, bool complete) { }
SetCancellationHandler(System.Action<System.Runtime.DurableInstancing.InstancePersistenceContext> cancellationHandler)230         public void SetCancellationHandler(System.Action<System.Runtime.DurableInstancing.InstancePersistenceContext> cancellationHandler) { }
UnassociatedInstanceKey(System.Guid key)231         public void UnassociatedInstanceKey(System.Guid key) { }
WroteInstanceKeyMetadataValue(System.Guid key, System.Xml.Linq.XName name, System.Runtime.DurableInstancing.InstanceValue value)232         public void WroteInstanceKeyMetadataValue(System.Guid key, System.Xml.Linq.XName name, System.Runtime.DurableInstancing.InstanceValue value) { }
WroteInstanceMetadataValue(System.Xml.Linq.XName name, System.Runtime.DurableInstancing.InstanceValue value)233         public void WroteInstanceMetadataValue(System.Xml.Linq.XName name, System.Runtime.DurableInstancing.InstanceValue value) { }
WroteInstanceOwnerMetadataValue(System.Xml.Linq.XName name, System.Runtime.DurableInstancing.InstanceValue value)234         public void WroteInstanceOwnerMetadataValue(System.Xml.Linq.XName name, System.Runtime.DurableInstancing.InstanceValue value) { }
235     }
236     public abstract partial class InstancePersistenceEvent : System.IEquatable<System.Runtime.DurableInstancing.InstancePersistenceEvent>
237     {
InstancePersistenceEvent()238         internal InstancePersistenceEvent() { }
239         public System.Xml.Linq.XName Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
Equals(object obj)240         public override bool Equals(object obj) { throw null; }
Equals(System.Runtime.DurableInstancing.InstancePersistenceEvent persistenceEvent)241         public bool Equals(System.Runtime.DurableInstancing.InstancePersistenceEvent persistenceEvent) { throw null; }
GetHashCode()242         public override int GetHashCode() { throw null; }
operator ==(System.Runtime.DurableInstancing.InstancePersistenceEvent left, System.Runtime.DurableInstancing.InstancePersistenceEvent right)243         public static bool operator ==(System.Runtime.DurableInstancing.InstancePersistenceEvent left, System.Runtime.DurableInstancing.InstancePersistenceEvent right) { throw null; }
operator !=(System.Runtime.DurableInstancing.InstancePersistenceEvent left, System.Runtime.DurableInstancing.InstancePersistenceEvent right)244         public static bool operator !=(System.Runtime.DurableInstancing.InstancePersistenceEvent left, System.Runtime.DurableInstancing.InstancePersistenceEvent right) { throw null; }
245     }
246     public abstract partial class InstancePersistenceEvent<T> : System.Runtime.DurableInstancing.InstancePersistenceEvent where T : System.Runtime.DurableInstancing.InstancePersistenceEvent<T>, new()
247     {
InstancePersistenceEvent(System.Xml.Linq.XName name)248         protected InstancePersistenceEvent(System.Xml.Linq.XName name) { }
249         public static T Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
250     }
251     [System.SerializableAttribute]
252     public partial class InstancePersistenceException : System.Exception
253     {
InstancePersistenceException()254         public InstancePersistenceException() { }
InstancePersistenceException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)255         protected InstancePersistenceException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
InstancePersistenceException(string msg)256         public InstancePersistenceException(string msg) { }
InstancePersistenceException(string msg, System.Exception inner)257         public InstancePersistenceException(string msg, System.Exception inner) { }
258     }
259     public enum InstanceState
260     {
261         Completed = 3,
262         Initialized = 2,
263         Uninitialized = 1,
264         Unknown = 0,
265     }
266     public abstract partial class InstanceStore
267     {
InstanceStore()268         protected InstanceStore() { }
269         public System.Runtime.DurableInstancing.InstanceOwner DefaultInstanceOwner { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
BeginExecute(System.Runtime.DurableInstancing.InstanceHandle handle, System.Runtime.DurableInstancing.InstancePersistenceCommand command, System.TimeSpan timeout, System.AsyncCallback callback, object state)270         public System.IAsyncResult BeginExecute(System.Runtime.DurableInstancing.InstanceHandle handle, System.Runtime.DurableInstancing.InstancePersistenceCommand command, System.TimeSpan timeout, System.AsyncCallback callback, object state) { throw null; }
BeginTryCommand(System.Runtime.DurableInstancing.InstancePersistenceContext context, System.Runtime.DurableInstancing.InstancePersistenceCommand command, System.TimeSpan timeout, System.AsyncCallback callback, object state)271         protected internal virtual System.IAsyncResult BeginTryCommand(System.Runtime.DurableInstancing.InstancePersistenceContext context, System.Runtime.DurableInstancing.InstancePersistenceCommand command, System.TimeSpan timeout, System.AsyncCallback callback, object state) { throw null; }
BeginWaitForEvents(System.Runtime.DurableInstancing.InstanceHandle handle, System.TimeSpan timeout, System.AsyncCallback callback, object state)272         public System.IAsyncResult BeginWaitForEvents(System.Runtime.DurableInstancing.InstanceHandle handle, System.TimeSpan timeout, System.AsyncCallback callback, object state) { throw null; }
CreateInstanceHandle()273         public System.Runtime.DurableInstancing.InstanceHandle CreateInstanceHandle() { throw null; }
CreateInstanceHandle(System.Guid instanceId)274         public System.Runtime.DurableInstancing.InstanceHandle CreateInstanceHandle(System.Guid instanceId) { throw null; }
CreateInstanceHandle(System.Runtime.DurableInstancing.InstanceOwner owner)275         public System.Runtime.DurableInstancing.InstanceHandle CreateInstanceHandle(System.Runtime.DurableInstancing.InstanceOwner owner) { throw null; }
CreateInstanceHandle(System.Runtime.DurableInstancing.InstanceOwner owner, System.Guid instanceId)276         public System.Runtime.DurableInstancing.InstanceHandle CreateInstanceHandle(System.Runtime.DurableInstancing.InstanceOwner owner, System.Guid instanceId) { throw null; }
EndExecute(System.IAsyncResult result)277         public System.Runtime.DurableInstancing.InstanceView EndExecute(System.IAsyncResult result) { throw null; }
EndTryCommand(System.IAsyncResult result)278         public bool EndTryCommand(System.IAsyncResult result) { throw null; }
EndWaitForEvents(System.IAsyncResult result)279         public System.Collections.Generic.List<System.Runtime.DurableInstancing.InstancePersistenceEvent> EndWaitForEvents(System.IAsyncResult result) { throw null; }
Execute(System.Runtime.DurableInstancing.InstanceHandle handle, System.Runtime.DurableInstancing.InstancePersistenceCommand command, System.TimeSpan timeout)280         public System.Runtime.DurableInstancing.InstanceView Execute(System.Runtime.DurableInstancing.InstanceHandle handle, System.Runtime.DurableInstancing.InstancePersistenceCommand command, System.TimeSpan timeout) { throw null; }
GetEvents(System.Runtime.DurableInstancing.InstanceOwner owner)281         protected System.Runtime.DurableInstancing.InstancePersistenceEvent[] GetEvents(System.Runtime.DurableInstancing.InstanceOwner owner) { throw null; }
GetInstanceOwners()282         protected System.Runtime.DurableInstancing.InstanceOwner[] GetInstanceOwners() { throw null; }
OnFreeInstanceHandle(System.Runtime.DurableInstancing.InstanceHandle instanceHandle, object userContext)283         protected virtual void OnFreeInstanceHandle(System.Runtime.DurableInstancing.InstanceHandle instanceHandle, object userContext) { }
OnNewInstanceHandle(System.Runtime.DurableInstancing.InstanceHandle instanceHandle)284         protected virtual object OnNewInstanceHandle(System.Runtime.DurableInstancing.InstanceHandle instanceHandle) { throw null; }
ResetEvent(System.Runtime.DurableInstancing.InstancePersistenceEvent persistenceEvent, System.Runtime.DurableInstancing.InstanceOwner owner)285         protected void ResetEvent(System.Runtime.DurableInstancing.InstancePersistenceEvent persistenceEvent, System.Runtime.DurableInstancing.InstanceOwner owner) { }
SignalEvent(System.Runtime.DurableInstancing.InstancePersistenceEvent persistenceEvent, System.Runtime.DurableInstancing.InstanceOwner owner)286         protected void SignalEvent(System.Runtime.DurableInstancing.InstancePersistenceEvent persistenceEvent, System.Runtime.DurableInstancing.InstanceOwner owner) { }
TryCommand(System.Runtime.DurableInstancing.InstancePersistenceContext context, System.Runtime.DurableInstancing.InstancePersistenceCommand command, System.TimeSpan timeout)287         protected internal virtual bool TryCommand(System.Runtime.DurableInstancing.InstancePersistenceContext context, System.Runtime.DurableInstancing.InstancePersistenceCommand command, System.TimeSpan timeout) { throw null; }
WaitForEvents(System.Runtime.DurableInstancing.InstanceHandle handle, System.TimeSpan timeout)288         public System.Collections.Generic.List<System.Runtime.DurableInstancing.InstancePersistenceEvent> WaitForEvents(System.Runtime.DurableInstancing.InstanceHandle handle, System.TimeSpan timeout) { throw null; }
289     }
290     public abstract partial class InstanceStoreQueryResult
291     {
InstanceStoreQueryResult()292         protected InstanceStoreQueryResult() { }
293     }
294     public sealed partial class InstanceValue
295     {
InstanceValue(object value)296         public InstanceValue(object value) { }
InstanceValue(object value, System.Runtime.DurableInstancing.InstanceValueOptions options)297         public InstanceValue(object value, System.Runtime.DurableInstancing.InstanceValueOptions options) { }
298         public static System.Runtime.DurableInstancing.InstanceValue DeletedValue { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
299         public bool IsDeletedValue { get { throw null; } }
300         public System.Runtime.DurableInstancing.InstanceValueOptions Options { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
301         public object Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
302     }
303     [System.FlagsAttribute]
304     public enum InstanceValueConsistency
305     {
306         InDoubt = 1,
307         None = 0,
308         Partial = 2,
309     }
310     [System.FlagsAttribute]
311     public enum InstanceValueOptions
312     {
313         None = 0,
314         Optional = 1,
315         WriteOnly = 2,
316     }
317     public sealed partial class InstanceView
318     {
InstanceView()319         internal InstanceView() { }
320         public System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue> InstanceData { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
321         public System.Runtime.DurableInstancing.InstanceValueConsistency InstanceDataConsistency { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
322         public System.Guid InstanceId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
323         public System.Collections.Generic.IDictionary<System.Guid, System.Runtime.DurableInstancing.InstanceKeyView> InstanceKeys { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
324         public System.Runtime.DurableInstancing.InstanceValueConsistency InstanceKeysConsistency { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
325         public System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue> InstanceMetadata { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
326         public System.Runtime.DurableInstancing.InstanceValueConsistency InstanceMetadataConsistency { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
327         public System.Runtime.DurableInstancing.InstanceOwner InstanceOwner { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
328         public System.Collections.Generic.IDictionary<System.Xml.Linq.XName, System.Runtime.DurableInstancing.InstanceValue> InstanceOwnerMetadata { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
329         public System.Runtime.DurableInstancing.InstanceValueConsistency InstanceOwnerMetadataConsistency { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
330         public System.Runtime.DurableInstancing.InstanceState InstanceState { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
331         public System.Collections.ObjectModel.ReadOnlyCollection<System.Runtime.DurableInstancing.InstanceStoreQueryResult> InstanceStoreQueryResults { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
332         public bool IsBoundToInstance { get { throw null; } }
333         public bool IsBoundToInstanceOwner { get { throw null; } }
334         public bool IsBoundToLock { get { throw null; } }
335     }
336 }
337