Skip to content

NetworkLegConnection

Type ISIAPINetworkLegConnection · Interface
Namespace SIDRASolutions.SI.API
Assembly SIDRASolutions.SI.API.dll
COM CLSID 99F63CB1-320B-4AAD-A19D-2FFBF7C0DFAF

Declaration

[Guid("99F63CB1-320B-4AAD-A19D-2FFBF7C0DFAF")]
public interface ISIAPINetworkLegConnection

Members

Properties

Site1_Name

string Site1_Name { get; }

Type string

Code samples
string site1_Name = networkLegConnection.Site1_Name;
CComBSTR site1_Name;
networkLegConnection->get_Site1_Name(&site1_Name);
site1__name = networkLegConnection.Site1_Name
$site1_Name = $networkLegConnection.Site1_Name

Leg1_Orientation

int Leg1_Orientation { get; }

Type int

Code samples
int leg1_Orientation = networkLegConnection.Leg1_Orientation;
long leg1_Orientation;
networkLegConnection->get_Leg1_Orientation(&leg1_Orientation);
leg1__orientation = networkLegConnection.Leg1_Orientation
$leg1_Orientation = $networkLegConnection.Leg1_Orientation

Site2_Name

string Site2_Name { get; }

Type string

Code samples
string site2_Name = networkLegConnection.Site2_Name;
CComBSTR site2_Name;
networkLegConnection->get_Site2_Name(&site2_Name);
site2__name = networkLegConnection.Site2_Name
$site2_Name = $networkLegConnection.Site2_Name

Leg2_Orientation

int Leg2_Orientation { get; }

Type int

Code samples
int leg2_Orientation = networkLegConnection.Leg2_Orientation;
long leg2_Orientation;
networkLegConnection->get_Leg2_Orientation(&leg2_Orientation);
leg2__orientation = networkLegConnection.Leg2_Orientation
$leg2_Orientation = $networkLegConnection.Leg2_Orientation

Network

ISIAPINetwork Network { get; }

Type ISIAPINetwork

Code samples
var network = networkLegConnection.Network;
CComPtr<ISIAPINetwork> network;
networkLegConnection->get_Network(&network);
network = networkLegConnection.Network
$network = $networkLegConnection.Network

NetworkSite1

ISIAPINetworkSite NetworkSite1 { get; }

Type ISIAPINetworkSite

Code samples
var networkSite1 = networkLegConnection.NetworkSite1;
CComPtr<ISIAPINetworkSite> networkSite1;
networkLegConnection->get_NetworkSite1(&networkSite1);
network_site1 = networkLegConnection.NetworkSite1
$networkSite1 = $networkLegConnection.NetworkSite1

NetworkSite2

ISIAPINetworkSite NetworkSite2 { get; }

Type ISIAPINetworkSite

Code samples
var networkSite2 = networkLegConnection.NetworkSite2;
CComPtr<ISIAPINetworkSite> networkSite2;
networkLegConnection->get_NetworkSite2(&networkSite2);
network_site2 = networkLegConnection.NetworkSite2
$networkSite2 = $networkLegConnection.NetworkSite2

ConnectionType

int ConnectionType { get; set; }

Type int

Code samples
int connectionType = networkLegConnection.ConnectionType;
networkLegConnection.ConnectionType = 0;
long connectionType;
networkLegConnection->get_ConnectionType(&connectionType);
networkLegConnection->put_ConnectionType(0);
connection_type = networkLegConnection.ConnectionType
networkLegConnection.ConnectionType = 0
$connectionType = $networkLegConnection.ConnectionType
$networkLegConnection.ConnectionType = 0

ZIndex

int ZIndex { get; set; }

Type int

Code samples
int zIndex = networkLegConnection.ZIndex;
networkLegConnection.ZIndex = 0;
long zIndex;
networkLegConnection->get_ZIndex(&zIndex);
networkLegConnection->put_ZIndex(0);
z_index = networkLegConnection.ZIndex
networkLegConnection.ZIndex = 0
$zIndex = $networkLegConnection.ZIndex
$networkLegConnection.ZIndex = 0