//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ // // This source code was auto-generated by Microsoft.VSDesigner, Version 4.0.30319.42000. // #pragma warning disable 1591 namespace GreenshotConfluencePlugin.confluence { using System; using System.Web.Services; using System.Diagnostics; using System.Web.Services.Protocols; using System.Xml.Serialization; using System.ComponentModel; /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Web.Services.WebServiceBindingAttribute(Name="confluenceservice-v1SoapBinding", Namespace="http://confluence/rpc/soap-axis/confluenceservice-v1")] [System.Xml.Serialization.SoapIncludeAttribute(typeof(AbstractRemotePageSummary))] [System.Xml.Serialization.SoapIncludeAttribute(typeof(RemoteSpaceSummary))] [System.Xml.Serialization.SoapIncludeAttribute(typeof(RemoteSearchResult))] public partial class ConfluenceSoapServiceService : System.Web.Services.Protocols.SoapHttpClientProtocol { private System.Threading.SendOrPostCallback searchOperationCompleted; private System.Threading.SendOrPostCallback getSpaceOperationCompleted; private System.Threading.SendOrPostCallback getChildrenOperationCompleted; private System.Threading.SendOrPostCallback loginOperationCompleted; private System.Threading.SendOrPostCallback getPageOperationCompleted; private System.Threading.SendOrPostCallback getPage1OperationCompleted; private System.Threading.SendOrPostCallback logoutOperationCompleted; private System.Threading.SendOrPostCallback addAttachmentOperationCompleted; private System.Threading.SendOrPostCallback addAttachment1OperationCompleted; private System.Threading.SendOrPostCallback getSpacesOperationCompleted; private System.Threading.SendOrPostCallback getPagesOperationCompleted; private bool useDefaultCredentialsSetExplicitly; /// public ConfluenceSoapServiceService() { this.Url = "http://confluence/rpc/soap-axis/confluenceservice-v1"; if ((this.IsLocalFileSystemWebService(this.Url) == true)) { this.UseDefaultCredentials = true; this.useDefaultCredentialsSetExplicitly = false; } else { this.useDefaultCredentialsSetExplicitly = true; } } public new string Url { get { return base.Url; } set { if ((((this.IsLocalFileSystemWebService(base.Url) == true) && (this.useDefaultCredentialsSetExplicitly == false)) && (this.IsLocalFileSystemWebService(value) == false))) { base.UseDefaultCredentials = false; } base.Url = value; } } public new bool UseDefaultCredentials { get { return base.UseDefaultCredentials; } set { base.UseDefaultCredentials = value; this.useDefaultCredentialsSetExplicitly = true; } } /// public event searchCompletedEventHandler searchCompleted; /// public event getSpaceCompletedEventHandler getSpaceCompleted; /// public event getChildrenCompletedEventHandler getChildrenCompleted; /// public event loginCompletedEventHandler loginCompleted; /// public event getPageCompletedEventHandler getPageCompleted; /// public event getPage1CompletedEventHandler getPage1Completed; /// public event logoutCompletedEventHandler logoutCompleted; /// public event addAttachmentCompletedEventHandler addAttachmentCompleted; /// public event addAttachment1CompletedEventHandler addAttachment1Completed; /// public event getSpacesCompletedEventHandler getSpacesCompleted; /// public event getPagesCompletedEventHandler getPagesCompleted; /// [System.Web.Services.Protocols.SoapRpcMethodAttribute("", RequestNamespace="http://soap.rpc.confluence.atlassian.com", ResponseNamespace="http://confluence/rpc/soap-axis/confluenceservice-v1")] [return: System.Xml.Serialization.SoapElementAttribute("searchReturn")] public RemoteSearchResult[] search(string in0, string in1, int in2) { object[] results = this.Invoke("search", new object[] { in0, in1, in2}); return ((RemoteSearchResult[])(results[0])); } /// public void searchAsync(string in0, string in1, int in2) { this.searchAsync(in0, in1, in2, null); } /// public void searchAsync(string in0, string in1, int in2, object userState) { if ((this.searchOperationCompleted == null)) { this.searchOperationCompleted = new System.Threading.SendOrPostCallback(this.OnsearchOperationCompleted); } this.InvokeAsync("search", new object[] { in0, in1, in2}, this.searchOperationCompleted, userState); } private void OnsearchOperationCompleted(object arg) { if ((this.searchCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.searchCompleted(this, new searchCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } /// [System.Web.Services.Protocols.SoapRpcMethodAttribute("", RequestNamespace="http://soap.rpc.confluence.atlassian.com", ResponseNamespace="http://confluence/rpc/soap-axis/confluenceservice-v1")] [return: System.Xml.Serialization.SoapElementAttribute("getSpaceReturn")] public RemoteSpace getSpace(string in0, string in1) { object[] results = this.Invoke("getSpace", new object[] { in0, in1}); return ((RemoteSpace)(results[0])); } /// public void getSpaceAsync(string in0, string in1) { this.getSpaceAsync(in0, in1, null); } /// public void getSpaceAsync(string in0, string in1, object userState) { if ((this.getSpaceOperationCompleted == null)) { this.getSpaceOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetSpaceOperationCompleted); } this.InvokeAsync("getSpace", new object[] { in0, in1}, this.getSpaceOperationCompleted, userState); } private void OngetSpaceOperationCompleted(object arg) { if ((this.getSpaceCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.getSpaceCompleted(this, new getSpaceCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } /// [System.Web.Services.Protocols.SoapRpcMethodAttribute("", RequestNamespace="http://soap.rpc.confluence.atlassian.com", ResponseNamespace="http://confluence/rpc/soap-axis/confluenceservice-v1")] [return: System.Xml.Serialization.SoapElementAttribute("getChildrenReturn")] public RemotePageSummary[] getChildren(string in0, long in1) { object[] results = this.Invoke("getChildren", new object[] { in0, in1}); return ((RemotePageSummary[])(results[0])); } /// public void getChildrenAsync(string in0, long in1) { this.getChildrenAsync(in0, in1, null); } /// public void getChildrenAsync(string in0, long in1, object userState) { if ((this.getChildrenOperationCompleted == null)) { this.getChildrenOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetChildrenOperationCompleted); } this.InvokeAsync("getChildren", new object[] { in0, in1}, this.getChildrenOperationCompleted, userState); } private void OngetChildrenOperationCompleted(object arg) { if ((this.getChildrenCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.getChildrenCompleted(this, new getChildrenCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } /// [System.Web.Services.Protocols.SoapRpcMethodAttribute("", RequestNamespace="http://soap.rpc.confluence.atlassian.com", ResponseNamespace="http://confluence/rpc/soap-axis/confluenceservice-v1")] [return: System.Xml.Serialization.SoapElementAttribute("loginReturn")] public string login(string in0, string in1) { object[] results = this.Invoke("login", new object[] { in0, in1}); return ((string)(results[0])); } /// public void loginAsync(string in0, string in1) { this.loginAsync(in0, in1, null); } /// public void loginAsync(string in0, string in1, object userState) { if ((this.loginOperationCompleted == null)) { this.loginOperationCompleted = new System.Threading.SendOrPostCallback(this.OnloginOperationCompleted); } this.InvokeAsync("login", new object[] { in0, in1}, this.loginOperationCompleted, userState); } private void OnloginOperationCompleted(object arg) { if ((this.loginCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.loginCompleted(this, new loginCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } /// [System.Web.Services.Protocols.SoapRpcMethodAttribute("", RequestNamespace="http://soap.rpc.confluence.atlassian.com", ResponseNamespace="http://confluence/rpc/soap-axis/confluenceservice-v1")] [return: System.Xml.Serialization.SoapElementAttribute("getPageReturn")] public RemotePage getPage(string in0, string in1, string in2) { object[] results = this.Invoke("getPage", new object[] { in0, in1, in2}); return ((RemotePage)(results[0])); } /// public void getPageAsync(string in0, string in1, string in2) { this.getPageAsync(in0, in1, in2, null); } /// public void getPageAsync(string in0, string in1, string in2, object userState) { if ((this.getPageOperationCompleted == null)) { this.getPageOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetPageOperationCompleted); } this.InvokeAsync("getPage", new object[] { in0, in1, in2}, this.getPageOperationCompleted, userState); } private void OngetPageOperationCompleted(object arg) { if ((this.getPageCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.getPageCompleted(this, new getPageCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } /// [System.Web.Services.WebMethodAttribute(MessageName="getPage1")] [System.Web.Services.Protocols.SoapRpcMethodAttribute("", RequestNamespace="http://soap.rpc.confluence.atlassian.com", ResponseNamespace="http://confluence/rpc/soap-axis/confluenceservice-v1")] [return: System.Xml.Serialization.SoapElementAttribute("getPageReturn")] public RemotePage getPage(string in0, long in1) { object[] results = this.Invoke("getPage1", new object[] { in0, in1}); return ((RemotePage)(results[0])); } /// public void getPage1Async(string in0, long in1) { this.getPage1Async(in0, in1, null); } /// public void getPage1Async(string in0, long in1, object userState) { if ((this.getPage1OperationCompleted == null)) { this.getPage1OperationCompleted = new System.Threading.SendOrPostCallback(this.OngetPage1OperationCompleted); } this.InvokeAsync("getPage1", new object[] { in0, in1}, this.getPage1OperationCompleted, userState); } private void OngetPage1OperationCompleted(object arg) { if ((this.getPage1Completed != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.getPage1Completed(this, new getPage1CompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } /// [System.Web.Services.Protocols.SoapRpcMethodAttribute("", RequestNamespace="http://soap.rpc.confluence.atlassian.com", ResponseNamespace="http://confluence/rpc/soap-axis/confluenceservice-v1")] [return: System.Xml.Serialization.SoapElementAttribute("logoutReturn")] public bool logout(string in0) { object[] results = this.Invoke("logout", new object[] { in0}); return ((bool)(results[0])); } /// public void logoutAsync(string in0) { this.logoutAsync(in0, null); } /// public void logoutAsync(string in0, object userState) { if ((this.logoutOperationCompleted == null)) { this.logoutOperationCompleted = new System.Threading.SendOrPostCallback(this.OnlogoutOperationCompleted); } this.InvokeAsync("logout", new object[] { in0}, this.logoutOperationCompleted, userState); } private void OnlogoutOperationCompleted(object arg) { if ((this.logoutCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.logoutCompleted(this, new logoutCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } /// [System.Web.Services.Protocols.SoapRpcMethodAttribute("", RequestNamespace="http://soap.rpc.confluence.atlassian.com", ResponseNamespace="http://confluence/rpc/soap-axis/confluenceservice-v1")] [return: System.Xml.Serialization.SoapElementAttribute("addAttachmentReturn")] public RemoteAttachment addAttachment(string in0, long in1, RemoteAttachment in2, [System.Xml.Serialization.SoapElementAttribute(DataType="base64Binary")] byte[] in3) { object[] results = this.Invoke("addAttachment", new object[] { in0, in1, in2, in3}); return ((RemoteAttachment)(results[0])); } /// public void addAttachmentAsync(string in0, long in1, RemoteAttachment in2, byte[] in3) { this.addAttachmentAsync(in0, in1, in2, in3, null); } /// public void addAttachmentAsync(string in0, long in1, RemoteAttachment in2, byte[] in3, object userState) { if ((this.addAttachmentOperationCompleted == null)) { this.addAttachmentOperationCompleted = new System.Threading.SendOrPostCallback(this.OnaddAttachmentOperationCompleted); } this.InvokeAsync("addAttachment", new object[] { in0, in1, in2, in3}, this.addAttachmentOperationCompleted, userState); } private void OnaddAttachmentOperationCompleted(object arg) { if ((this.addAttachmentCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.addAttachmentCompleted(this, new addAttachmentCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } /// [System.Web.Services.WebMethodAttribute(MessageName="addAttachment1")] [System.Web.Services.Protocols.SoapRpcMethodAttribute("", RequestNamespace="http://soap.rpc.confluence.atlassian.com", ResponseNamespace="http://confluence/rpc/soap-axis/confluenceservice-v1")] [return: System.Xml.Serialization.SoapElementAttribute("addAttachmentReturn")] public RemoteAttachment addAttachment(string in0, RemoteAttachment in1, [System.Xml.Serialization.SoapElementAttribute(DataType="base64Binary")] byte[] in2) { object[] results = this.Invoke("addAttachment1", new object[] { in0, in1, in2}); return ((RemoteAttachment)(results[0])); } /// public void addAttachment1Async(string in0, RemoteAttachment in1, byte[] in2) { this.addAttachment1Async(in0, in1, in2, null); } /// public void addAttachment1Async(string in0, RemoteAttachment in1, byte[] in2, object userState) { if ((this.addAttachment1OperationCompleted == null)) { this.addAttachment1OperationCompleted = new System.Threading.SendOrPostCallback(this.OnaddAttachment1OperationCompleted); } this.InvokeAsync("addAttachment1", new object[] { in0, in1, in2}, this.addAttachment1OperationCompleted, userState); } private void OnaddAttachment1OperationCompleted(object arg) { if ((this.addAttachment1Completed != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.addAttachment1Completed(this, new addAttachment1CompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } /// [System.Web.Services.Protocols.SoapRpcMethodAttribute("", RequestNamespace="http://soap.rpc.confluence.atlassian.com", ResponseNamespace="http://confluence/rpc/soap-axis/confluenceservice-v1")] [return: System.Xml.Serialization.SoapElementAttribute("getSpacesReturn")] public RemoteSpaceSummary[] getSpaces(string in0) { object[] results = this.Invoke("getSpaces", new object[] { in0}); return ((RemoteSpaceSummary[])(results[0])); } /// public void getSpacesAsync(string in0) { this.getSpacesAsync(in0, null); } /// public void getSpacesAsync(string in0, object userState) { if ((this.getSpacesOperationCompleted == null)) { this.getSpacesOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetSpacesOperationCompleted); } this.InvokeAsync("getSpaces", new object[] { in0}, this.getSpacesOperationCompleted, userState); } private void OngetSpacesOperationCompleted(object arg) { if ((this.getSpacesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.getSpacesCompleted(this, new getSpacesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } /// [System.Web.Services.Protocols.SoapRpcMethodAttribute("", RequestNamespace="http://soap.rpc.confluence.atlassian.com", ResponseNamespace="http://confluence/rpc/soap-axis/confluenceservice-v1")] [return: System.Xml.Serialization.SoapElementAttribute("getPagesReturn")] public RemotePageSummary[] getPages(string in0, string in1) { object[] results = this.Invoke("getPages", new object[] { in0, in1}); return ((RemotePageSummary[])(results[0])); } /// public void getPagesAsync(string in0, string in1) { this.getPagesAsync(in0, in1, null); } /// public void getPagesAsync(string in0, string in1, object userState) { if ((this.getPagesOperationCompleted == null)) { this.getPagesOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetPagesOperationCompleted); } this.InvokeAsync("getPages", new object[] { in0, in1}, this.getPagesOperationCompleted, userState); } private void OngetPagesOperationCompleted(object arg) { if ((this.getPagesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.getPagesCompleted(this, new getPagesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } /// public new void CancelAsync(object userState) { base.CancelAsync(userState); } private bool IsLocalFileSystemWebService(string url) { if (((url == null) || (url == string.Empty))) { return false; } System.Uri wsUri = new System.Uri(url); if (((wsUri.Port >= 1024) && (string.Compare(wsUri.Host, "localHost", System.StringComparison.OrdinalIgnoreCase) == 0))) { return true; } return false; } } /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")] public partial class RemoteSearchResult { private string excerptField; private long idField; private string titleField; private string typeField; private string urlField; /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string excerpt { get { return this.excerptField; } set { this.excerptField = value; } } /// public long id { get { return this.idField; } set { this.idField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string title { get { return this.titleField; } set { this.titleField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string type { get { return this.typeField; } set { this.typeField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string url { get { return this.urlField; } set { this.urlField = value; } } } /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")] public partial class RemoteAttachment { private string commentField; private string contentTypeField; private System.Nullable createdField; private string creatorField; private string fileNameField; private long fileSizeField; private long idField; private long pageIdField; private string titleField; private string urlField; /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string comment { get { return this.commentField; } set { this.commentField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string contentType { get { return this.contentTypeField; } set { this.contentTypeField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public System.Nullable created { get { return this.createdField; } set { this.createdField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string creator { get { return this.creatorField; } set { this.creatorField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string fileName { get { return this.fileNameField; } set { this.fileNameField = value; } } /// public long fileSize { get { return this.fileSizeField; } set { this.fileSizeField = value; } } /// public long id { get { return this.idField; } set { this.idField = value; } } /// public long pageId { get { return this.pageIdField; } set { this.pageIdField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string title { get { return this.titleField; } set { this.titleField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string url { get { return this.urlField; } set { this.urlField = value; } } } /// [System.Xml.Serialization.SoapIncludeAttribute(typeof(RemotePageSummary))] [System.Xml.Serialization.SoapIncludeAttribute(typeof(RemotePage))] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")] public abstract partial class AbstractRemotePageSummary { private long idField; private int permissionsField; private string spaceField; private string titleField; private string urlField; /// public long id { get { return this.idField; } set { this.idField = value; } } /// public int permissions { get { return this.permissionsField; } set { this.permissionsField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string space { get { return this.spaceField; } set { this.spaceField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string title { get { return this.titleField; } set { this.titleField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string url { get { return this.urlField; } set { this.urlField = value; } } } /// [System.Xml.Serialization.SoapIncludeAttribute(typeof(RemotePage))] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")] public partial class RemotePageSummary : AbstractRemotePageSummary { private long parentIdField; /// public long parentId { get { return this.parentIdField; } set { this.parentIdField = value; } } } /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")] public partial class RemotePage : RemotePageSummary { private string contentField; private string contentStatusField; private System.Nullable createdField; private string creatorField; private bool currentField; private bool homePageField; private System.Nullable modifiedField; private string modifierField; private int versionField; /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string content { get { return this.contentField; } set { this.contentField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string contentStatus { get { return this.contentStatusField; } set { this.contentStatusField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public System.Nullable created { get { return this.createdField; } set { this.createdField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string creator { get { return this.creatorField; } set { this.creatorField = value; } } /// public bool current { get { return this.currentField; } set { this.currentField = value; } } /// public bool homePage { get { return this.homePageField; } set { this.homePageField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public System.Nullable modified { get { return this.modifiedField; } set { this.modifiedField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string modifier { get { return this.modifierField; } set { this.modifierField = value; } } /// public int version { get { return this.versionField; } set { this.versionField = value; } } } /// [System.Xml.Serialization.SoapIncludeAttribute(typeof(RemoteSpace))] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")] public partial class RemoteSpaceSummary { private string keyField; private string nameField; private string typeField; private string urlField; /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string key { get { return this.keyField; } set { this.keyField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string name { get { return this.nameField; } set { this.nameField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string type { get { return this.typeField; } set { this.typeField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string url { get { return this.urlField; } set { this.urlField = value; } } } /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")] public partial class RemoteSpace : RemoteSpaceSummary { private string descriptionField; private long homePageField; private string spaceGroupField; /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string description { get { return this.descriptionField; } set { this.descriptionField = value; } } /// public long homePage { get { return this.homePageField; } set { this.homePageField = value; } } /// [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)] public string spaceGroup { get { return this.spaceGroupField; } set { this.spaceGroupField = value; } } } /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] public delegate void searchCompletedEventHandler(object sender, searchCompletedEventArgs e); /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class searchCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { private object[] results; internal searchCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : base(exception, cancelled, userState) { this.results = results; } /// public RemoteSearchResult[] Result { get { this.RaiseExceptionIfNecessary(); return ((RemoteSearchResult[])(this.results[0])); } } } /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] public delegate void getSpaceCompletedEventHandler(object sender, getSpaceCompletedEventArgs e); /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class getSpaceCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { private object[] results; internal getSpaceCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : base(exception, cancelled, userState) { this.results = results; } /// public RemoteSpace Result { get { this.RaiseExceptionIfNecessary(); return ((RemoteSpace)(this.results[0])); } } } /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] public delegate void getChildrenCompletedEventHandler(object sender, getChildrenCompletedEventArgs e); /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class getChildrenCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { private object[] results; internal getChildrenCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : base(exception, cancelled, userState) { this.results = results; } /// public RemotePageSummary[] Result { get { this.RaiseExceptionIfNecessary(); return ((RemotePageSummary[])(this.results[0])); } } } /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] public delegate void loginCompletedEventHandler(object sender, loginCompletedEventArgs e); /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class loginCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { private object[] results; internal loginCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : base(exception, cancelled, userState) { this.results = results; } /// public string Result { get { this.RaiseExceptionIfNecessary(); return ((string)(this.results[0])); } } } /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] public delegate void getPageCompletedEventHandler(object sender, getPageCompletedEventArgs e); /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class getPageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { private object[] results; internal getPageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : base(exception, cancelled, userState) { this.results = results; } /// public RemotePage Result { get { this.RaiseExceptionIfNecessary(); return ((RemotePage)(this.results[0])); } } } /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] public delegate void getPage1CompletedEventHandler(object sender, getPage1CompletedEventArgs e); /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class getPage1CompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { private object[] results; internal getPage1CompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : base(exception, cancelled, userState) { this.results = results; } /// public RemotePage Result { get { this.RaiseExceptionIfNecessary(); return ((RemotePage)(this.results[0])); } } } /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] public delegate void logoutCompletedEventHandler(object sender, logoutCompletedEventArgs e); /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class logoutCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { private object[] results; internal logoutCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : base(exception, cancelled, userState) { this.results = results; } /// public bool Result { get { this.RaiseExceptionIfNecessary(); return ((bool)(this.results[0])); } } } /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] public delegate void addAttachmentCompletedEventHandler(object sender, addAttachmentCompletedEventArgs e); /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class addAttachmentCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { private object[] results; internal addAttachmentCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : base(exception, cancelled, userState) { this.results = results; } /// public RemoteAttachment Result { get { this.RaiseExceptionIfNecessary(); return ((RemoteAttachment)(this.results[0])); } } } /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] public delegate void addAttachment1CompletedEventHandler(object sender, addAttachment1CompletedEventArgs e); /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class addAttachment1CompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { private object[] results; internal addAttachment1CompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : base(exception, cancelled, userState) { this.results = results; } /// public RemoteAttachment Result { get { this.RaiseExceptionIfNecessary(); return ((RemoteAttachment)(this.results[0])); } } } /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] public delegate void getSpacesCompletedEventHandler(object sender, getSpacesCompletedEventArgs e); /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class getSpacesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { private object[] results; internal getSpacesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : base(exception, cancelled, userState) { this.results = results; } /// public RemoteSpaceSummary[] Result { get { this.RaiseExceptionIfNecessary(); return ((RemoteSpaceSummary[])(this.results[0])); } } } /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] public delegate void getPagesCompletedEventHandler(object sender, getPagesCompletedEventArgs e); /// [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.4084.0")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class getPagesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { private object[] results; internal getPagesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : base(exception, cancelled, userState) { this.results = results; } /// public RemotePageSummary[] Result { get { this.RaiseExceptionIfNecessary(); return ((RemotePageSummary[])(this.results[0])); } } } } #pragma warning restore 1591