Skip to content

ISIAPIPhases Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: C5D06130-63EE-413E-B452-5A0D13701E6D

Declaration

[Guid("C5D06130-63EE-413E-B452-5A0D13701E6D")]
public interface ISIAPIPhases

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIPhase this[] { get; }

Type ISIAPIPhase

Code samples
var this[] = phases.this[];
Dim this[] As ISIAPIPhase = phases.this[]
this[] = phases.this[]
$this[] = $phases.this[]

this[]

ISIAPIPhase this[] { get; }

Type ISIAPIPhase

Code samples
var this[] = phases.this[];
Dim this[] As ISIAPIPhase = phases.this[]
this[] = phases.this[]
$this[] = $phases.this[]

Methods

PhaseExists(string)

bool PhaseExists(string phasename)

Parameters

Name Type Description
phasename string

Returns bool

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