Open() public static method

public static Open ( string address ) : Bus
address string
return Bus
Esempio n. 1
0
 static SystemBusValue()
 {
     bus = Address.StarterBusType == "system" ? Starter : (Address.System != null ? Bus.Open(Address.System) : null);
 }
Esempio n. 2
0
 static SessionBusValue()
 {
     bus = Address.StarterBusType == "session" ? Starter : (Address.Session != null ? Bus.Open(Address.Session) : null);
 }
Esempio n. 3
0
 static StarterBusValue()
 {
     bus = Bus.Open(Address.Starter);
 }