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