14 instantiations of XPathResult
System.ServiceModel (14)
System\ServiceModel\Dispatcher\MatchSingleFxEngineOpcode.cs (5)
167
result = new
XPathResult
(string.Empty);
171
result = new
XPathResult
((bool)evalResult);
175
result = new
XPathResult
((XPathNodeIterator)evalResult);
179
result = new
XPathResult
((double)evalResult);
183
result = new
XPathResult
((string)evalResult);
System\ServiceModel\Dispatcher\QueryResultOp.cs (8)
75
result = new
XPathResult
(value);
81
result = new
XPathResult
(value);
87
result = new
XPathResult
(value);
93
result = new
XPathResult
(value);
196
result = new
XPathResult
(value);
202
result = new
XPathResult
(value);
208
result = new
XPathResult
(value);
214
result = new
XPathResult
(value);
System\ServiceModel\Dispatcher\XPathResult.cs (1)
139
XPathResult result = new
XPathResult
();
23 references to XPathResult
System.ServiceModel (23)
System\ServiceModel\Dispatcher\MatchSingleFxEngineOpcode.cs (4)
147
XPathResult
result = this.Select(targetNav);
154
context.Processor.ResultSet.Add(new KeyValuePair<MessageQuery,
XPathResult
>((MessageQuery)this.item, result));
160
internal
XPathResult
Select(XPathNavigator nav)
162
XPathResult
result;
System\ServiceModel\Dispatcher\QueryMatcher.cs (5)
106
XPathResult
result;
131
if (typeof(TResult) == typeof(
XPathResult
) || typeof(TResult) == typeof(object))
152
Collection<KeyValuePair<MessageQuery,
XPathResult
>> results =
153
new Collection<KeyValuePair<MessageQuery,
XPathResult
>>();
160
if (typeof(TResult) == typeof(
XPathResult
))
System\ServiceModel\Dispatcher\QueryProcessor.cs (4)
438
XPathResult
queryResult; // for singleton queries...
442
ICollection<KeyValuePair<MessageQuery,
XPathResult
>> resultSet; // for inverse queries that produce multiple query results
611
internal ICollection<KeyValuePair<MessageQuery,
XPathResult
>> ResultSet
647
internal
XPathResult
QueryResult
System\ServiceModel\Dispatcher\QueryResultOp.cs (4)
68
XPathResult
result;
189
XPathResult
result;
221
context.Processor.ResultSet.Add(new KeyValuePair<MessageQuery,
XPathResult
>((MessageQuery)this.results[0], result));
225
context.Processor.ResultSet.Add(new KeyValuePair<MessageQuery,
XPathResult
>((MessageQuery)this.results[i], result.Copy()));
System\ServiceModel\Dispatcher\XPathMessageQueryCollection.cs (2)
28
if (typeof(TResult) == typeof(
XPathResult
) ||
50
if (typeof(TResult) == typeof(
XPathResult
) ||
System\ServiceModel\Dispatcher\XPathResult.cs (2)
137
internal
XPathResult
Copy()
139
XPathResult
result = new XPathResult();
System\ServiceModel\XPathMessageQuery.cs (2)
102
if (typeof(TResult) == typeof(
XPathResult
) ||
128
if (typeof(TResult) == typeof(
XPathResult
) ||