Exemplo n.º 1
0
 public IWCOutgoingPrivateConnections(IWComms iwc)
 {
     IWC = iwc;
 }
Exemplo n.º 2
0
 public IWCIncomingPrivateConnection(IWComms iwc, string URL, ConnectionIdentifier connection) :
     base("POST", URL)
 {
     IWC = iwc;
     Connection = connection;
 }
Exemplo n.º 3
0
 public IWCIncomingPublicConnections(IWComms iwc) :
     base("POST", "/iwcconnection")
 {
     IWC = iwc;
 }
Exemplo n.º 4
0
 public IWCOutgoingPublicConnections(IWComms iwc)
 {
     IWC = iwc;
 }
 public void RegionLoaded(Scene scene)
 {
     m_IWC = scene.RequestModuleInterface<IWComms>();
 }
Exemplo n.º 6
0
 public virtual void RegionLoaded(Scene scene)
 {
     if (!m_Enabled)
         return;
     m_IWC = scene.RequestModuleInterface<IWComms>();
 }