Skip to content

ISIAPINetworkMCs Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: 1DF4C454-28DD-4DFD-AC8C-9EBB96228EF3

Declaration

[Guid("1DF4C454-28DD-4DFD-AC8C-9EBB96228EF3")]
public interface ISIAPINetworkMCs

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPINetworkMC this[] { get; }

Type ISIAPINetworkMC

Code samples
var this[] = networkMCs.this[];
Dim this[] As ISIAPINetworkMC = networkMCs.this[]
this[] = networkMCs.this[]
$this[] = $networkMCs.this[]