Skip to content

ISIAPINetworkCCGSequences Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: 5B04C297-4D76-4CD4-B6EC-94F5CFA1DA78

Declaration

[Guid("5B04C297-4D76-4CD4-B6EC-94F5CFA1DA78")]
public interface ISIAPINetworkCCGSequences

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPINetworkCCGSequence this[] { get; }

Type ISIAPINetworkCCGSequence

Code samples
var this[] = networkCCGSequences.this[];
Dim this[] As ISIAPINetworkCCGSequence = networkCCGSequences.this[]
this[] = networkCCGSequences.this[]
$this[] = $networkCCGSequences.this[]

this[]

ISIAPINetworkCCGSequence this[] { get; }

Type ISIAPINetworkCCGSequence

Code samples
var this[] = networkCCGSequences.this[];
Dim this[] As ISIAPINetworkCCGSequence = networkCCGSequences.this[]
this[] = networkCCGSequences.this[]
$this[] = $networkCCGSequences.this[]

Methods

SequenceExists(string)

bool SequenceExists(string name)

Parameters

Name Type Description
name string

Returns bool

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