|
LogEventPublisherPublish(String, String, Exception) Method
|
Raises a log message with the provided data.
Namespace: GSF.DiagnosticsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.205-beta+5ef4169f3b1079d8b163dd363614f656bd140924
Syntax Public Sub Publish (
Optional message As String = Nothing,
Optional details As String = Nothing,
Optional exception As Exception = Nothing
)
public:
void Publish(
String^ message = nullptr,
String^ details = nullptr,
Exception^ exception = nullptr
)
member Publish :
?message : string *
?details : string *
?exception : Exception
(* Defaults:
let _message = defaultArg message null
let _details = defaultArg details null
let _exception = defaultArg exception null
*)
-> unit
function Publish(message, details, exception);
View SourceParameters
- message String (Optional)
- details String (Optional)
- A long text field with the details of the message.
- exception Exception (Optional)
- An exception object if one is provided.
See Also