2 writes to extensions
System.Activities (2)
System\Activities\Hosting\WorkflowInstance.cs (2)
207this.extensions = WorkflowInstanceExtensionManager.CreateInstanceExtensions(this.WorkflowDefinition, extensionManager); 220this.extensions = null;
17 references to extensions
System.Activities (17)
System\Activities\Hosting\WorkflowInstance.cs (17)
181if (this.extensions != null) 183return this.extensions.Find<T>(); 193if (this.extensions != null) 195return this.extensions.FindAll<T>(); 208if (this.extensions != null) 210this.HasPersistenceModule = this.extensions.HasPersistenceModule; 217if (this.extensions != null) 219this.extensions.Dispose(); 387if (this.extensions != null) 389this.extensions.Initialize(); 390if (this.extensions.HasTrackingParticipant) 450if (this.extensions != null && this.extensions.HasWorkflowInstanceExtensions) 454for (int i = 0; i < this.extensions.WorkflowInstanceExtensions.Count; i++) 456IWorkflowInstanceExtension extension = this.extensions.WorkflowInstanceExtensions[i]; 617if (this.extensions != null) 619this.extensions.Cancel();