예제 #1
0
파일: AppsState.cs 프로젝트: weeble/ohos
 public AppRecord(IRawXapp aApp, string aId, Strand aStrand)
 {
     App = aApp;
     Id = aId;
     Strand = aStrand;
 }
예제 #2
0
파일: AppContext.cs 프로젝트: weeble/ohos
 public void PublishXapp(string aXappName, IRawXapp aRawXapp)
 {
     iXappServer.AddXapp(aXappName, aRawXapp);
 }
예제 #3
0
파일: AppsState.cs 프로젝트: weeble/ohos
 public AppRecord AddApp(string aName, IRawXapp aApp)
 {
     return Apps[aName] = new AppRecord(aApp, aName, new Strand());
 }