Open() 공개 정적인 메소드

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