Beispiel #1
0
 internal void BindOwner(System.Runtime.DurableInstancing.InstanceOwner owner)
 {
     Fx.AssertAndThrow(!this.IsViewFrozen, "BindOwner called on read-only InstanceView.");
     if (this.IsBoundToInstanceOwner)
     {
         throw Fx.Exception.AsError(new InvalidOperationException(SRCore.ContextAlreadyBoundToOwner));
     }
     this.InstanceOwner = owner;
 }
 protected void SignalEvent(System.Runtime.DurableInstancing.InstancePersistenceEvent persistenceEvent, System.Runtime.DurableInstancing.InstanceOwner owner)
 {
 }
 protected System.Runtime.DurableInstancing.InstancePersistenceEvent[] GetEvents(System.Runtime.DurableInstancing.InstanceOwner owner)
 {
     throw null;
 }
 public System.Runtime.DurableInstancing.InstanceHandle CreateInstanceHandle(System.Runtime.DurableInstancing.InstanceOwner owner, System.Guid instanceId)
 {
     throw null;
 }
Beispiel #5
0
 internal InstanceView(System.Runtime.DurableInstancing.InstanceOwner owner, Guid instanceId) : this()
 {
     this.InstanceOwner     = owner;
     this.InstanceId        = instanceId;
     this.IsBoundToInstance = true;
 }
Beispiel #6
0
 internal InstanceView(System.Runtime.DurableInstancing.InstanceOwner owner) : this()
 {
     this.InstanceOwner = owner;
 }