Skip to content

ISIAPIOutputSiteRoutes Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: D82C5B78-EF2A-4A30-8E3A-74E391559E70

Declaration

[Guid("D82C5B78-EF2A-4A30-8E3A-74E391559E70")]
public interface ISIAPIOutputSiteRoutes

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputSiteRoute this[] { get; }

Type ISIAPIOutputSiteRoute

Code samples
var this[] = outputSiteRoutes.this[];
Dim this[] As ISIAPIOutputSiteRoute = outputSiteRoutes.this[]
this[] = outputSiteRoutes.this[]
$this[] = $outputSiteRoutes.this[]

this[]

ISIAPIOutputSiteRoute this[] { get; }

Type ISIAPIOutputSiteRoute

Code samples
var this[] = outputSiteRoutes.this[];
Dim this[] As ISIAPIOutputSiteRoute = outputSiteRoutes.this[]
this[] = outputSiteRoutes.this[]
$this[] = $outputSiteRoutes.this[]

Methods

Exists(string)

bool Exists(string routeName)

Parameters

Name Type Description
routeName string

Returns bool

Code samples
bool result = outputSiteRoutes.Exists(@"Example");
Dim result As Boolean = outputSiteRoutes.Exists("Example")
result = outputSiteRoutes.Exists(r"Example")
$result = $outputSiteRoutes.Exists("Example")