HandleExceptionArgs.Exception 属性
获取或设置将在响应中处理并返回的异常。
命名空间: System.Data.Services
程序集: Microsoft.Data.Services(在 Microsoft.Data.Services.dll 中)
语法
声明
Public Property Exception As Exception
Get
Set
用法
Dim instance As HandleExceptionArgs
Dim value As Exception
value = instance.Exception
instance.Exception = value
public Exception Exception { get; set; }
public:
property Exception^ Exception {
Exception^ get ();
void set (Exception^ value);
}
member Exception : Exception with get, set
function get Exception () : Exception
function set Exception (value : Exception)
属性值
类型:System.Exception
将在响应中处理并返回的异常。
注释
如果异常为 DataServiceException,则异常消息将始终返回到客户端,而不管 UseVerboseErrors 值。 如果 UseVerboseErrors 为 true,则内部异常也将返回到客户端;否则,仅返回 DataServiceException 消息。