Esempio n. 1
0
        private async void load(string url)
        {
            HMS.SP.WebInformation spWebInformation = await SPGet.getWebInformation(spglb.myClient, url);

            this.add_WebInformation(1, spWebInformation);
            this.hide_running();
        }
Esempio n. 2
0
 public int add_WebInformation_deferred(int pos, int level, HMS.SP.WebInformation spWebInformation)
 {
     {
         string useUrl = spWebInformation.__deferred_.uri;
         if (!String.IsNullOrEmpty(useUrl))
         {
             pos = this.add_lineAt(pos, level, false, "WebInformation", "", knownPages.pageWebInformation, useUrl);
         }
         else
         {
             pos = this.add_lineAt(pos, level, true, "WebInformation", "", knownPages.NONE, "");
             pos = this.add_WebInformation(pos, level + 1, spWebInformation);
         }
     }
     return(pos);
 }
Esempio n. 3
0
 public int  add_WebInformation(int pos, int level, HMS.SP.WebInformation spWebInformation)
 {
     if (spWebInformation.__HMSError_ != null && (spWebInformation.__HMSError_.errno != 0 || spWebInformation.__HMSError_.info != ""))
     {
         pos = this.add_lineAt(pos, level, "__HMSError", HMS.Util.__HMSError.toString(spWebInformation.__HMSError_));
     }
     pos = this.add__deferred(pos, level, spWebInformation.__deferred_);
     pos = this.add__metadata(pos, level, spWebInformation.__metadata_);
     pos = this.add__rest(pos, level, spWebInformation.__rest);
     pos = this.add_lineAt(pos, level, "Configuration", HMS.SP.SPUtil.toString(spWebInformation.Configuration_));               //Int16;
     pos = this.add_lineAt(pos, level, "Created", HMS.SP.SPUtil.toString(spWebInformation.Created_));                           //Object;
     pos = this.add_lineAt(pos, level, "Description", HMS.SP.SPUtil.toString(spWebInformation.Description_));                   //String;
     pos = this.add_lineAt(pos, level, "Id", HMS.SP.SPUtil.toString(spWebInformation.Id_));                                     //Undefined;
     pos = this.add_lineAt(pos, level, "Language", HMS.SP.SPUtil.toString(spWebInformation.Language_));                         //Number;
     pos = this.add_lineAt(pos, level, "LastItemModifiedDate", HMS.SP.SPUtil.toString(spWebInformation.LastItemModifiedDate_)); //Undefined;
     pos = this.add_lineAt(pos, level, "ServerRelativeUrl", HMS.SP.SPUtil.toString(spWebInformation.ServerRelativeUrl_));       //String;
     pos = this.add_lineAt(pos, level, "Title", HMS.SP.SPUtil.toString(spWebInformation.Title_));                               //String;
     pos = this.add_lineAt(pos, level, "WebTemplate", HMS.SP.SPUtil.toString(spWebInformation.WebTemplate_));                   //Object;
     pos = this.add_lineAt(pos, level, "WebTemplateId", HMS.SP.SPUtil.toString(spWebInformation.WebTemplateId_));               //Int32;
     return(pos);
 }
Esempio n. 4
0
 public int add_WebInformation(int level, HMS.SP.WebInformation spWebInformation)
 {
     return(add_WebInformation(-1, level, spWebInformation));
 }