HubConfiguration.EnableDetailedErrors Property

.NET Framework 4.5

Determines whether detailed exceptions thrown in Hub methods get reported back to the invoking client. Defaults to false.

Namespace:  Microsoft.AspNet.SignalR
Assembly:  Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)

Syntax

'Declaration
Public Property EnableDetailedErrors As Boolean 
    Get 
    Set
'Usage
Dim instance As HubConfiguration 
Dim value As Boolean 

value = instance.EnableDetailedErrors

instance.EnableDetailedErrors = value
public bool EnableDetailedErrors { get; set; }
public:
property bool EnableDetailedErrors {
    bool get ();
    void set (bool value);
}
member EnableDetailedErrors : bool with get, set
function get EnableDetailedErrors () : boolean 
function set EnableDetailedErrors (value : boolean)

Property Value

Type: System.Boolean
true if detailed exceptions thrown in Hub methods get reported back to the invoking client; otherwise, false.

See Also

Reference

HubConfiguration Class

Microsoft.AspNet.SignalR Namespace