DataServiceConfiguration.UseVerboseErrors 属性

获取或设置是否应由数据服务返回详细错误。

命名空间:  System.Data.Services
程序集:  Microsoft.Data.Services(在 Microsoft.Data.Services.dll 中)

语法

声明
Public Property UseVerboseErrors As Boolean
    Get
    Set
用法
Dim instance As DataServiceConfiguration
Dim value As Boolean

value = instance.UseVerboseErrors

instance.UseVerboseErrors = value
public bool UseVerboseErrors { get; set; }
public:
virtual property bool UseVerboseErrors {
    bool get () sealed;
    void set (bool value) sealed;
}
abstract UseVerboseErrors : bool with get, set
override UseVerboseErrors : bool with get, set
final function get UseVerboseErrors () : boolean
final function set UseVerboseErrors (value : boolean)

属性值

类型:System.Boolean
如果应由数据服务返回详细错误,则为 True;否则,为 false。

实现

IDataServiceConfiguration.UseVerboseErrors

注释

UseVerboseErrors 属性用于设置整个服务的默认详细错误行为。 个别响应可以具有不同的行为,具体取决于 DataService<T> 类中 HandleException 方法的参数的 UseVerboseErrors 属性值。

出于安全方面的考虑,详细错误只应在开发期间启用,不应在生产环境中启用。

请参阅

参考

DataServiceConfiguration 类

System.Data.Services 命名空间

其他资源

配置数据服务(WCF 数据服务)