2 overrides of Id
System.Activities (1)
System\Activities\WorkflowApplication.cs (1)
249
public override Guid
Id
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Dispatcher\WorkflowServiceInstance.cs (1)
221
public override Guid
Id
15 references to Id
System.Activities (15)
System\Activities\Hosting\WorkflowInstance.cs (11)
322
this.Controller.Track(new WorkflowInstanceUpdatedRecord(this.
Id
, this.WorkflowDefinition.DisplayName, originalDefinitionIdentity, this.executor.WorkflowIdentity));
341
this.TrackingProvider.AddRecord(new WorkflowInstanceUpdatedRecord(this.
Id
, this.WorkflowDefinition.DisplayName, originalDefinitionIdentity, this.DefinitionIdentity, blockingActivities));
466
throw FxTrace.Exception.AsError(new InvalidOperationException(SR.WorkflowInstanceIsReadOnly(this.
Id
)));
550
this.controller.Track(new WorkflowInstanceUnhandledExceptionRecord(this.
Id
, this.WorkflowDefinition.DisplayName, faultSourceInfo, exception, this.DefinitionIdentity));
632
this.controller.Track(new WorkflowInstanceAbortedRecord(this.
Id
, this.WorkflowDefinition.DisplayName, message, this.DefinitionIdentity));
704
this.controller.Track(new WorkflowInstanceTerminatedRecord(this.
Id
, this.WorkflowDefinition.DisplayName, this.executor.TerminationException.Message, this.DefinitionIdentity));
708
this.controller.Track(new WorkflowInstanceRecord(this.
Id
, this.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Completed, this.DefinitionIdentity));
713
this.controller.Track(new WorkflowInstanceRecord(this.
Id
, this.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Canceled, this.DefinitionIdentity));
728
this.TrackingProvider.AddRecord(new WorkflowInstanceRecord(this.
Id
, this.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Started, this.DefinitionIdentity));
733
this.TrackingProvider.AddRecord(new WorkflowInstanceRecord(this.
Id
, this.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Resumed, this.DefinitionIdentity));
786
throw FxTrace.Exception.AsError(new InvalidOperationException(SR.WorkflowInstanceAborted(this.
Id
)));
System\Activities\Hosting\WorkflowInstanceProxy.cs (1)
23
return this.instance.
Id
;
System\Activities\Runtime\ActivityExecutor.cs (3)
370
WorkflowInstanceId = this.host.
Id
;
1778
if (this.host.
Id
!= this.instanceId)
1780
throw FxTrace.Exception.AsError(new InvalidOperationException(SR.HostIdDoesNotMatchInstance(this.host.
Id
, this.instanceId)));