Skip to content

ISIAPIOutputNetworkGraphTuples Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: FD291FB7-64B6-4F12-9314-529C6B79B38A

Declaration

[Guid("FD291FB7-64B6-4F12-9314-529C6B79B38A")]
public interface ISIAPIOutputNetworkGraphTuples

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputNetworkGraphTuple this[] { get; }

Type ISIAPIOutputNetworkGraphTuple

Code samples
var this[] = outputNetworkGraphTuples.this[];
Dim this[] As ISIAPIOutputNetworkGraphTuple = outputNetworkGraphTuples.this[]
this[] = outputNetworkGraphTuples.this[]
$this[] = $outputNetworkGraphTuples.this[]