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