Skip to content

NetworkCCGSequences

Type 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

Members

Properties

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

Methods

Method Returns Summary
SequenceExists(string) bool

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPINetworkCCGSequence this[] { get; }

Type ISIAPINetworkCCGSequence

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

this[]

ISIAPINetworkCCGSequence this[] { get; }

Type ISIAPINetworkCCGSequence

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