|
ErrorLoggerErrorTextMethod Property
|
Gets or sets the Delegate that provides common text stating what could have possibly
caused the Exception.
Namespace: GSF.ErrorManagementAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.248-beta+a497a19de709fd99e2448886199a2c8824265ddf
Syntax[BrowsableAttribute(false)]
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)]
public Func<string> ErrorTextMethod { get; set; }
<BrowsableAttribute(false)>
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)>
Public Property ErrorTextMethod As Func(Of String)
Get
Set
public:
[BrowsableAttribute(false)]
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility::Hidden)]
property Func<String^>^ ErrorTextMethod {
Func<String^>^ get ();
void set (Func<String^>^ value);
}
[<BrowsableAttribute(false)>]
[<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)>]
member ErrorTextMethod : Func<string> with get, set
function get_ErrorTextMethod();
function set_ErrorTextMethod(value);
View SourceProperty Value
FuncString
ExceptionsException | Condition |
---|
ArgumentNullException | The value being assigned is null. |
Example
Sample text:
An unexpected exception has occurred in RogueApplication. This may be due to an inconsistent system
state or a programming error.
See Also