Skip to content

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

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPINetworkCCG this[] { get; }

Type ISIAPINetworkCCG

Code samples
var this[] = networkCCGs.this[];
Dim this[] As ISIAPINetworkCCG = networkCCGs.this[]
this[] = networkCCGs.this[]
$this[] = $networkCCGs.this[]

this[]

ISIAPINetworkCCG this[] { get; }

Type ISIAPINetworkCCG

Code samples
var this[] = networkCCGs.this[];
Dim this[] As ISIAPINetworkCCG = networkCCGs.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");
Dim result As Boolean = networkCCGs.NetworkCCGExists("Example")
result = networkCCGs.NetworkCCGExists(r"Example")
$result = $networkCCGs.NetworkCCGExists("Example")