Skip to content

NetworkCCGs

Type ISIAPINetworkCCGs · Interface
Namespace SIDRASolutions.SI.API
Assembly SIDRASolutions.SI.API.dll
COM CLSID 5C05363F-32D4-4D9D-9E06-1A7C0550447D

Declaration

[Guid("5C05363F-32D4-4D9D-9E06-1A7C0550447D")]
public interface ISIAPINetworkCCGs

Members

Properties

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

Methods

Method Returns Summary
NetworkCCGExists(string) bool Queries whether a particular Network Common Control Group (CCG) exists in the collection

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPINetworkCCG this[] { get; }

Type ISIAPINetworkCCG

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

this[]

ISIAPINetworkCCG this[] { get; }

Type ISIAPINetworkCCG

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

Methods

NetworkCCGExists(string)

Queries whether a particular Network Common Control Group (CCG) exists in the collection

bool NetworkCCGExists(string ccgName)

Parameters

Name Type Description
ccgName string CCG name to query

Returns bool - True, if a Network CCG with the given CCG name exists in the collection. False otherwise

Code samples
bool result = networkCCGs.NetworkCCGExists(@"Example");
VARIANT_BOOL result;
networkCCGs->NetworkCCGExists(CComBSTR(L"Example"), &result);
result = networkCCGs.NetworkCCGExists(r"Example")
$result = $networkCCGs.NetworkCCGExists("Example")