Skip to content

ISIAPIRouteMCs Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: 5F3473D7-7148-42C3-ACF2-D05D43B4F689

Declaration

[Guid("5F3473D7-7148-42C3-ACF2-D05D43B4F689")]
public interface ISIAPIRouteMCs

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIRouteMC this[] { get; }

Type ISIAPIRouteMC

Code samples
var this[] = routeMCs.this[];
Dim this[] As ISIAPIRouteMC = routeMCs.this[]
this[] = routeMCs.this[]
$this[] = $routeMCs.this[]