Skip to content

OutputSiteRoutes

Type 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

Members

Properties

Property Type Summary
Count int
this[] ISIAPIOutputSiteRoute
this[] ISIAPIOutputSiteRoute

Methods

Method Returns Summary
Exists(string) bool

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputSiteRoute this[] { get; }

Type ISIAPIOutputSiteRoute

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

this[]

ISIAPIOutputSiteRoute this[] { get; }

Type ISIAPIOutputSiteRoute

Code samples
var this[] = outputSiteRoutes.this[];
CComPtr<ISIAPIOutputSiteRoute> this[];
outputSiteRoutes->get_this[](&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");
VARIANT_BOOL result;
outputSiteRoutes->Exists(CComBSTR(L"Example"), &result);
result = outputSiteRoutes.Exists(r"Example")
$result = $outputSiteRoutes.Exists("Example")