Skip to content

DiagnosticMsgs

Type 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

Members

Properties

Property Type Summary
Count int
this[] ISIAPIDiagnosticMsg

Properties

Count

int Count { get; }

Type int

Code samples
int count = diagnosticMsgs.Count;
long count;
diagnosticMsgs->get_Count(&count);
count = diagnosticMsgs.Count
$count = $diagnosticMsgs.Count

this[]

ISIAPIDiagnosticMsg this[] { get; }

Type ISIAPIDiagnosticMsg

Code samples
var this[] = diagnosticMsgs.this[];
CComPtr<ISIAPIDiagnosticMsg> this[];
diagnosticMsgs->get_this[](&this[]);
this[] = diagnosticMsgs.this[]
$this[] = $diagnosticMsgs.this[]