コード例 #1
0
ファイル: EventArgs.cs プロジェクト: modulexcite/IL2JS
 public CollectionDeletedEventArgs(SharedCollection collection, string name)
 {
     this.Collection = collection;
     this.Name = name;
 }
コード例 #2
0
ファイル: EventArgs.cs プロジェクト: modulexcite/IL2JS
 public CollectionConnectedEventArgs(SharedCollection target, string name, bool created)
     : base(created)
 {
     this.Collection = target;
     this.Name = name;
 }
コード例 #3
0
ファイル: EventArgs.cs プロジェクト: tralivali1234/IL2JS
 public CollectionDeletedEventArgs(SharedCollection collection, string name)
 {
     this.Collection = collection;
     this.Name       = name;
 }
コード例 #4
0
 public void CloseCollection(SharedCollection collection)
 {
     this.CollectionsManager.Close(collection.Id);
 }
コード例 #5
0
ファイル: EventArgs.cs プロジェクト: tralivali1234/IL2JS
 public CollectionConnectedEventArgs(SharedCollection target, string name, bool created)
     : base(created)
 {
     this.Collection = target;
     this.Name       = name;
 }