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