2 implementations of ReturnType
System.Data.SqlXml (1)
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (1)
529
public XPathResultType
ReturnType
{ get { return this.returnType; } }
System.ServiceModel (1)
System\ServiceModel\Dispatcher\XPathMessageContext.cs (1)
250
public XPathResultType
ReturnType
8 references to ReturnType
System.ServiceModel (7)
System\ServiceModel\Dispatcher\QueryFunctions.cs (6)
77
switch (this.function.
ReturnType
)
86
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new QueryCompileException(QueryCompileError.InvalidType, SR.GetString(SR.QueryFunctionTypeNotSupported, this.function.
ReturnType
.ToString())));
112
switch (this.function.
ReturnType
)
135
throw DiagnosticUtility.ExceptionUtility.ThrowHelperCritical(new QueryProcessingException(QueryProcessingError.Unexpected, SR.GetString(SR.QueryFunctionTypeNotSupported, this.function.
ReturnType
.ToString())));
188
switch (this.function.
ReturnType
)
211
throw DiagnosticUtility.ExceptionUtility.ThrowHelperCritical(new QueryProcessingException(QueryProcessingError.Unexpected, SR.GetString(SR.QueryFunctionTypeNotSupported, this.function.
ReturnType
.ToString())));
System\ServiceModel\Dispatcher\XPathExpr.cs (1)
280
: base(XPathExprType.XsltFunction, ConvertTypeFromXslt(function.
ReturnType
), subExpr)
System.Xml (1)
System\Xml\XPath\Internal\FunctionQuery.cs (1)
91
XPathResultType result = function != null ? function.
ReturnType
: XPathResultType.Any;