コード例 #1
0
 public MapListArgs(Map mp)
 {
     this.mp = mp;
 }
コード例 #2
0
 private void CallCompleted(Map result)
 {
     if (result != null)
     {
         if (OnGetMapComplete != null)
             OnGetMapComplete(result, new MapListArgs(result));
     }
     else
     {
         if (OnGetMapError != null)
             OnGetMapError(result, new EventArgs());
     }
 }