Skip to content

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

Get an instance

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

Properties

Count

Gets the number of elements contained in the collection

int Count { get; }

Type int

Code samples
int count = networkLegConnections.Count;
Dim count As Integer = networkLegConnections.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[];
Dim this[] As ISIAPINetworkLegConnection = networkLegConnections.this[]
this[] = networkLegConnections.this[]
$this[] = $networkLegConnections.this[]