Skip to content

ISIAPIDiagnosticMsg Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: D05D7D69-F792-4AF5-8257-E238582A4200

Declaration

[Guid("D05D7D69-F792-4AF5-8257-E238582A4200")]
public interface ISIAPIDiagnosticMsg

Get an instance

// Navigate to the ISIAPIDiagnosticMsg you need via the ISIAPI tree.
// See ISIAPI for the activation root.
var diagnosticMsg = /* ... */;
' Navigate to the ISIAPIDiagnosticMsg you need via the ISIAPI tree.
' See ISIAPI for the activation root.
Dim diagnosticMsg As ISIAPIDiagnosticMsg = Nothing
# Navigate to the ISIAPIDiagnosticMsg you need via the ISIAPI tree.
# See ISIAPI for the activation root.
diagnosticMsg = ...
# Navigate to the ISIAPIDiagnosticMsg you need via the ISIAPI tree.
# See ISIAPI for the activation root.
$diagnosticMsg = $null

Properties

Message

string Message { get; }

Type string

Code samples
string message = diagnosticMsg.Message;
Dim message As String = diagnosticMsg.Message
message = diagnosticMsg.Message
$message = $diagnosticMsg.Message

Message_type

Message Type

int Message_type { get; }

Type int

Value

One of:

  • 0 - Information
  • 1 - Warning
  • 2 - Error
Code samples
int message_type = diagnosticMsg.Message_type;
Dim message_type As Integer = diagnosticMsg.Message_type
message_type = diagnosticMsg.Message_type
$message_type = $diagnosticMsg.Message_type

Log_time

DateTime Log_time { get; }

Type DateTime

Code samples
var log_time = diagnosticMsg.Log_time;
Dim log_time As DateTime = diagnosticMsg.Log_time
log_time = diagnosticMsg.Log_time
$log_time = $diagnosticMsg.Log_time