Open() public static method

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