Skip to content

NetworkLegConnections

Type ISIAPINetworkLegConnections · Interface
Namespace SIDRASolutions.SI.API
Assembly SIDRASolutions.SI.API.dll
COM CLSID 258ADC3B-0211-4E32-A9E2-34CF44BA43D7

Declaration

[Guid("258ADC3B-0211-4E32-A9E2-34CF44BA43D7")]
public interface ISIAPINetworkLegConnections

Members

Properties

Property Type Summary
Count int Gets the number of elements contained in the collection
this[] ISIAPINetworkLegConnection Gets the element at the specified index.

Properties

Count

Gets the number of elements contained in the collection

int Count { get; }

Type int

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

this[]

Gets the element at the specified index.

ISIAPINetworkLegConnection this[] { get; }

Type ISIAPINetworkLegConnection

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