Skip to content

Phases

Type 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

Members

Properties

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

Methods

Method Returns Summary
PhaseExists(string) bool

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIPhase this[] { get; }

Type ISIAPIPhase

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

this[]

ISIAPIPhase this[] { get; }

Type ISIAPIPhase

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