1 instantiation of WorkflowServiceAttributes
System.WorkflowServices (1)
System\Workflow\Activities\ReceiveActivity.cs (1)
1221WorkflowServiceAttributes workflowServiceAttribsValue = new WorkflowServiceAttributes();
34 references to WorkflowServiceAttributes
System.WorkflowServices (34)
System\Workflow\Activities\ReceiveActivity.cs (2)
59typeof(WorkflowServiceAttributes), typeof(ReceiveActivity), 1221WorkflowServiceAttributes workflowServiceAttribsValue = new WorkflowServiceAttributes();
System\Workflow\Activities\ValidationHelper.cs (2)
103WorkflowServiceAttributes serviceAttributes = (WorkflowServiceAttributes) ReceiveActivity.GetWorkflowServiceAttributes(rootActivity);
System\Workflow\Activities\WorkflowServiceAttributes.cs (27)
24typeof(AddressFilterMode), typeof(WorkflowServiceAttributes), 29typeof(string), typeof(WorkflowServiceAttributes), 34typeof(bool), typeof(WorkflowServiceAttributes), 39typeof(bool), typeof(WorkflowServiceAttributes), 44typeof(int), typeof(WorkflowServiceAttributes), 49typeof(string), typeof(WorkflowServiceAttributes), 54typeof(string), typeof(WorkflowServiceAttributes), 59typeof(bool), typeof(WorkflowServiceAttributes), 64typeof(bool), typeof(WorkflowServiceAttributes), 75get { return (AddressFilterMode) this.GetValue(WorkflowServiceAttributes.AddressFilterModeProperty); } 76set { this.SetValue(WorkflowServiceAttributes.AddressFilterModeProperty, value); } 82get { return (string) this.GetValue(WorkflowServiceAttributes.ConfigurationNameProperty); } 83set { this.SetValue(WorkflowServiceAttributes.ConfigurationNameProperty, value); } 89get { return (bool) this.GetValue(WorkflowServiceAttributes.IgnoreExtensionDataObjectProperty); } 90set { this.SetValue(WorkflowServiceAttributes.IgnoreExtensionDataObjectProperty, value); } 96get { return (bool) this.GetValue(WorkflowServiceAttributes.IncludeExceptionDetailInFaultsProperty); } 97set { this.SetValue(WorkflowServiceAttributes.IncludeExceptionDetailInFaultsProperty, value); } 103get { return (int) this.GetValue(WorkflowServiceAttributes.MaxItemsInObjectGraphProperty); } 104set { this.SetValue(WorkflowServiceAttributes.MaxItemsInObjectGraphProperty, value); } 110get { return (string) this.GetValue(WorkflowServiceAttributes.NameProperty); } 111set { this.SetValue(WorkflowServiceAttributes.NameProperty, value); } 117get { return (string) this.GetValue(WorkflowServiceAttributes.NamespaceProperty); } 118set { this.SetValue(WorkflowServiceAttributes.NamespaceProperty, value); } 124get { return (bool) this.GetValue(WorkflowServiceAttributes.UseSynchronizationContextProperty); } 125set { this.SetValue(WorkflowServiceAttributes.UseSynchronizationContextProperty, value); } 131get { return (bool) this.GetValue(WorkflowServiceAttributes.ValidateMustUnderstandProperty); } 132set { this.SetValue(WorkflowServiceAttributes.ValidateMustUnderstandProperty, value); }
System\Workflow\Activities\WorkflowServiceAttributesPropertyProviderExtender.cs (3)
25public WorkflowServiceAttributes GetWorkflowServiceAttributes(Activity activity) 27return activity.GetValue(ReceiveActivity.WorkflowServiceAttributesProperty) as WorkflowServiceAttributes; 30public void SetWorkflowServiceAttributes(Activity activity, WorkflowServiceAttributes value)