Skip to content

ISIAPIDiagnosticMsgs Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: F6EF0DF4-4EA8-4A6D-B971-8F8787F60FE1

Declaration

[Guid("F6EF0DF4-4EA8-4A6D-B971-8F8787F60FE1")]
public interface ISIAPIDiagnosticMsgs

Get an instance

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

Properties

Count

int Count { get; }

Type int

Code samples
int count = diagnosticMsgs.Count;
Dim count As Integer = diagnosticMsgs.Count
count = diagnosticMsgs.Count
$count = $diagnosticMsgs.Count

this[]

ISIAPIDiagnosticMsg this[] { get; }

Type ISIAPIDiagnosticMsg

Code samples
var this[] = diagnosticMsgs.this[];
Dim this[] As ISIAPIDiagnosticMsg = diagnosticMsgs.this[]
this[] = diagnosticMsgs.this[]
$this[] = $diagnosticMsgs.this[]