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