コード例 #1
0
ファイル: ResultSet.cs プロジェクト: Logeshkumar/Projects
 public ResultSet(Callback callback, int id, MockRootServer m_RootServer, int len)
 {
   this.callback = callback;
   this.id = id;
   this.len = len;
   this.m_RootServer = m_RootServer;
   m_TotalIndex = 0;
   callback.registerDelegate(new Callback.RecieveDelegate(delegateReciever));
 }
コード例 #2
0
ファイル: ClientAPI.cs プロジェクト: Logeshkumar/Projects
 public ClientAPI()
 {
   m_RootServer = new MockRootServer();
 }