6 writes to Where
System.ServiceModel.Activities (6)
System\ServiceModel\Activities\ContractInferenceHelper.cs (4)
657
correlationQuery.
Where
= new CorrelationActionMessageFilter { Action = action };
676
correlationQuery.
Where
= new CorrelationActionMessageFilter { Action = overridingAction };
684
correlationQuery.
Where
= new CorrelationActionMessageFilter { Action = defaultAction };
693
noActionQuery.
Where
= new CorrelationActionMessageFilter { Action = String.Empty };
System\ServiceModel\Activities\Description\CorrelationQueryBehavior.cs (1)
353
Where
= filter,
System\ServiceModel\CorrelationQuery.cs (1)
133
Where
= this.Where,
17 references to Where
System.ServiceModel.Activities (17)
System\ServiceModel\Activities\Description\CorrelationQueryBehavior.cs (2)
36
Fx.AssertAndThrow(query.
Where
!= null, "CorrelationQuery.Where must not be null");
409
query.
Where
,
System\ServiceModel\Activities\InternalSendMessage.cs (1)
370
TD.DuplicateCorrelationQuery(query.
Where
.ToString());
System\ServiceModel\Activities\WorkflowServiceHost.cs (1)
611
TD.DuplicateCorrelationQuery(correlationQuery.
Where
.ToString());
System\ServiceModel\CorrelationQuery.cs (13)
76
if (this.
Where
== null)
78
return otherQuery.
Where
== null;
81
return this.
Where
.Equals(otherQuery.
Where
);
86
return (this.
Where
!= null) ? this.
Where
.GetHashCode() : 0;
93
if (!(query.
Where
is CorrelationActionMessageFilter || query.
Where
is ActionMessageFilter))
108
if (query.
Where
is CorrelationActionMessageFilter)
110
if (((CorrelationActionMessageFilter)query.
Where
).Action == localAction || localAction == MessageHeaders.WildcardAction)
115
else if (query.
Where
is ActionMessageFilter)
117
if (((ActionMessageFilter)query.
Where
).Actions.Contains(localAction) || localAction == MessageHeaders.WildcardAction)
133
Where = this.
Where
,