2 writes to application
System.Activities (2)
System\Activities\WorkflowApplication.cs (2)
4306
this.
application
= application;
4319
this.
application
= application;
28 references to application
System.Activities (28)
System\Activities\WorkflowApplication.cs (28)
4348
if (this.
application
== null)
4394
Fx.AssertAndThrow(thisPtr.
application
== null, "Should not create a WorkflowApplicationInstance if we already have a WorkflowApplication");
4407
if (this.
application
.WaitForTurnAsync(this.instanceOperation, this.timeoutHelper.RemainingTime(), waitCompleteCallback, this))
4463
this.
application
.ValidateStateForLoad();
4465
this.
application
.SetPersistenceManager(this.persistenceManager);
4468
this.
application
.instanceId = this.persistenceManager.InstanceId;
4469
this.
application
.instanceIdSet = true;
4471
if (this.
application
.InstanceStore == null)
4473
this.
application
.InstanceStore = this.persistenceManager.InstanceStore;
4483
WorkflowIdentity definitionIdentity = this.
application
!= null ? this.
application
.DefinitionIdentity : WorkflowApplication.unknownIdentity;
4506
bool transactionRequired = this.
application
!= null ? this.
application
.IsLoadTransactionRequired() : false;
4569
if (this.
application
!= null)
4571
if (this.
application
.instanceIdSet)
4576
this.
application
.instanceId = this.persistenceManager.InstanceId;
4577
this.
application
.instanceIdSet = true;
4586
if (this.
application
!= null)
4588
this.pipeline = this.
application
.ProcessInstanceValues(this.values, out this.deserializedRuntimeState);
4594
this.
application
.persistencePipelineInUse = this.pipeline;
4596
if (this.
application
.state == WorkflowApplicationState.Aborted)
4650
if (this.
application
!= null)
4652
this.
application
.Initialize(this.deserializedRuntimeState, this.updateMap);
4655
this.
application
.UpdateInstanceMetadata();
4689
if (this.
application
!= null)
4693
this.
application
.NotifyOperationComplete(localInstanceOperation);
4720
if (thisPtr.
application
== null)
4726
thisPtr.
application
.AbortDueToException(exception);