//--- Constructors ---
 public ACConverterPageInfo(RemotePage confluenceRemotePage, string spaceRootPath, string dekiPageUrl, string dekiPagePath, int dekiPageId,
     string pageTitle, string tinyUrl, ACConverterPageInfo parentPage) {
     this._confluenceRemotePage = confluenceRemotePage;
     this._dekiPageUrl = dekiPageUrl;
     this._dekiPagePath = dekiPagePath;
     this._dekiPageId = dekiPageId;
     this._pageTitle = pageTitle;
     this._parentPage = parentPage;
     this._tinyUrl = tinyUrl;
     this._spaceRootPath = spaceRootPath;
 }
Example #2
0
 /// <remarks/>
 public void storePageAsync(string in0, RemotePage in1, object userState) {
     if ((this.storePageOperationCompleted == null)) {
         this.storePageOperationCompleted = new System.Threading.SendOrPostCallback(this.OnstorePageOperationCompleted);
     }
     this.InvokeAsync("storePage", new object[] {
                 in0,
                 in1}, this.storePageOperationCompleted, userState);
 }
Example #3
0
 /// <remarks/>
 public void storePageAsync(string in0, RemotePage in1) {
     this.storePageAsync(in0, in1, null);
 }
Example #4
0
 public RemotePage storePage(string in0, RemotePage in1) {
     object[] results = this.Invoke("storePage", new object[] {
                 in0,
                 in1});
     return ((RemotePage)(results[0]));
 }