コード例 #1
0
ファイル: AppsState.cs プロジェクト: weeble/ohos
 internal SessionRecord(string aKey, TabStatusQueue aListener, IAppsStateFactory aAppsStateFactory, UserList aUserList)
 {
     iListener = aListener;
     iAppsStateFactory = aAppsStateFactory;
     iUserList = aUserList;
     Key = aKey;
     Tabs = new Dictionary<string, ServerTab>();
 }
コード例 #2
0
ファイル: AppsState.cs プロジェクト: weeble/ohos
 public AppsState(IAppsStateFactory aAppsStateFactory)
 {
     iAppsStateFactory = aAppsStateFactory;
     Apps = new Dictionary<string, AppRecord>();
     Sessions = new Dictionary<string, SessionRecord>();
 }