greenshot/GreenshotConfluencePlugin/Web References/confluence/Reference.cs
2010-07-25 08:48:59 +00:00

4052 lines
173 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.3607
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Confluence
{
using System.Diagnostics;
using System.Web.Services;
using System.ComponentModel;
using System.Web.Services.Protocols;
using System;
using System.Xml.Serialization;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[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(RemoteException))]
[System.Xml.Serialization.SoapIncludeAttribute(typeof(Vector))]
[System.Xml.Serialization.SoapIncludeAttribute(typeof(RemotePermission))]
[System.Xml.Serialization.SoapIncludeAttribute(typeof(RemoteNodeStatus))]
[System.Xml.Serialization.SoapIncludeAttribute(typeof(RemotePageHistory))]
[System.Xml.Serialization.SoapIncludeAttribute(typeof(RemoteContentPermission))]
[System.Xml.Serialization.SoapIncludeAttribute(typeof(RemoteSpaceSummary))]
[System.Xml.Serialization.SoapIncludeAttribute(typeof(AbstractRemotePageSummary))]
[System.Xml.Serialization.SoapIncludeAttribute(typeof(RemoteSearchResult))]
public partial class ConfluenceSoapServiceService : System.Web.Services.Protocols.SoapHttpClientProtocol
{
/// <remarks/>
public ConfluenceSoapServiceService()
{
this.Url = "http://confluence/rpc/soap-axis/confluenceservice-v1";
}
/// <remarks/>
[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("getPermissionsReturn")]
public string[] getPermissions(string in0, string in1)
{
object[] results = this.Invoke("getPermissions", new object[] {
in0,
in1});
return ((string[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetPermissions(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getPermissions", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public string[] EndgetPermissions(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((string[])(results[0]));
}
/// <remarks/>
[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, Map in2, int in3)
{
object[] results = this.Invoke("search", new object[] {
in0,
in1,
in2,
in3});
return ((RemoteSearchResult[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult Beginsearch(string in0, string in1, Map in2, int in3, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("search", new object[] {
in0,
in1,
in2,
in3}, callback, asyncState);
}
/// <remarks/>
public RemoteSearchResult[] Endsearch(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteSearchResult[])(results[0]));
}
/// <remarks/>
[System.Web.Services.WebMethodAttribute(MessageName="search1")]
[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("search1", new object[] {
in0,
in1,
in2});
return ((RemoteSearchResult[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult Beginsearch1(string in0, string in1, int in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("search1", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public RemoteSearchResult[] Endsearch1(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteSearchResult[])(results[0]));
}
/// <remarks/>
[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("getCommentReturn")]
public RemoteComment getComment(string in0, long in1)
{
object[] results = this.Invoke("getComment", new object[] {
in0,
in1});
return ((RemoteComment)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetComment(string in0, long in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getComment", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteComment EndgetComment(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteComment)(results[0]));
}
/// <remarks/>
[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("getServerInfoReturn")]
public RemoteServerInfo getServerInfo(string in0)
{
object[] results = this.Invoke("getServerInfo", new object[] {
in0});
return ((RemoteServerInfo)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetServerInfo(string in0, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getServerInfo", new object[] {
in0}, callback, asyncState);
}
/// <remarks/>
public RemoteServerInfo EndgetServerInfo(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteServerInfo)(results[0]));
}
/// <remarks/>
[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]));
}
/// <remarks/>
public System.IAsyncResult BegingetChildren(string in0, long in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getChildren", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemotePageSummary[] EndgetChildren(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemotePageSummary[])(results[0]));
}
/// <remarks/>
[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]));
}
/// <remarks/>
public System.IAsyncResult Beginlogin(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("login", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public string Endlogin(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((string)(results[0]));
}
/// <remarks/>
[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("getUserReturn")]
public RemoteUser getUser(string in0, string in1)
{
object[] results = this.Invoke("getUser", new object[] {
in0,
in1});
return ((RemoteUser)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetUser(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getUser", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteUser EndgetUser(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteUser)(results[0]));
}
/// <remarks/>
[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("getPage", new object[] {
in0,
in1});
return ((RemotePage)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetPage(string in0, long in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getPage", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemotePage EndgetPage(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemotePage)(results[0]));
}
/// <remarks/>
[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, string in1, string in2)
{
object[] results = this.Invoke("getPage1", new object[] {
in0,
in1,
in2});
return ((RemotePage)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetPage1(string in0, string in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getPage1", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public RemotePage EndgetPage1(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemotePage)(results[0]));
}
/// <remarks/>
[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]));
}
/// <remarks/>
public System.IAsyncResult Beginlogout(string in0, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("logout", new object[] {
in0}, callback, asyncState);
}
/// <remarks/>
public bool Endlogout(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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]));
}
/// <remarks/>
public System.IAsyncResult BegingetSpace(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getSpace", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteSpace EndgetSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteSpace)(results[0]));
}
/// <remarks/>
[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("isPluginEnabledReturn")]
public bool isPluginEnabled(string in0, string in1)
{
object[] results = this.Invoke("isPluginEnabled", new object[] {
in0,
in1});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginisPluginEnabled(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("isPluginEnabled", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public bool EndisPluginEnabled(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("getClusterInformationReturn")]
public RemoteClusterInformation getClusterInformation(string in0)
{
object[] results = this.Invoke("getClusterInformation", new object[] {
in0});
return ((RemoteClusterInformation)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetClusterInformation(string in0, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getClusterInformation", new object[] {
in0}, callback, asyncState);
}
/// <remarks/>
public RemoteClusterInformation EndgetClusterInformation(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteClusterInformation)(results[0]));
}
/// <remarks/>
[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("installPluginReturn")]
public bool installPlugin(string in0, string in1, [System.Xml.Serialization.SoapElementAttribute(DataType="base64Binary")] byte[] in2)
{
object[] results = this.Invoke("installPlugin", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegininstallPlugin(string in0, string in1, byte[] in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("installPlugin", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndinstallPlugin(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("addCommentReturn")]
public RemoteComment addComment(string in0, RemoteComment in1)
{
object[] results = this.Invoke("addComment", new object[] {
in0,
in1});
return ((RemoteComment)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddComment(string in0, RemoteComment in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addComment", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteComment EndaddComment(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteComment)(results[0]));
}
/// <remarks/>
[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("getCommentsReturn")]
public RemoteComment[] getComments(string in0, long in1)
{
object[] results = this.Invoke("getComments", new object[] {
in0,
in1});
return ((RemoteComment[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetComments(string in0, long in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getComments", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteComment[] EndgetComments(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteComment[])(results[0]));
}
/// <remarks/>
[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("removeCommentReturn")]
public bool removeComment(string in0, long in1)
{
object[] results = this.Invoke("removeComment", new object[] {
in0,
in1});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginremoveComment(string in0, long in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("removeComment", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public bool EndremoveComment(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("getAttachmentsReturn")]
public RemoteAttachment[] getAttachments(string in0, long in1)
{
object[] results = this.Invoke("getAttachments", new object[] {
in0,
in1});
return ((RemoteAttachment[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetAttachments(string in0, long in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getAttachments", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteAttachment[] EndgetAttachments(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteAttachment[])(results[0]));
}
/// <remarks/>
[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("addAttachment", new object[] {
in0,
in1,
in2});
return ((RemoteAttachment)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddAttachment(string in0, RemoteAttachment in1, byte[] in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addAttachment", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public RemoteAttachment EndaddAttachment(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteAttachment)(results[0]));
}
/// <remarks/>
[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, long in1, RemoteAttachment in2, [System.Xml.Serialization.SoapElementAttribute(DataType="base64Binary")] byte[] in3)
{
object[] results = this.Invoke("addAttachment1", new object[] {
in0,
in1,
in2,
in3});
return ((RemoteAttachment)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddAttachment1(string in0, long in1, RemoteAttachment in2, byte[] in3, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addAttachment1", new object[] {
in0,
in1,
in2,
in3}, callback, asyncState);
}
/// <remarks/>
public RemoteAttachment EndaddAttachment1(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteAttachment)(results[0]));
}
/// <remarks/>
[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("removeAttachmentReturn")]
public bool removeAttachment(string in0, long in1, string in2)
{
object[] results = this.Invoke("removeAttachment", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginremoveAttachment(string in0, long in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("removeAttachment", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndremoveAttachment(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("getContentPermissionSetReturn")]
public RemoteContentPermissionSet getContentPermissionSet(string in0, long in1, string in2)
{
object[] results = this.Invoke("getContentPermissionSet", new object[] {
in0,
in1,
in2});
return ((RemoteContentPermissionSet)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetContentPermissionSet(string in0, long in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getContentPermissionSet", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public RemoteContentPermissionSet EndgetContentPermissionSet(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteContentPermissionSet)(results[0]));
}
/// <remarks/>
[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("getContentPermissionSetsReturn")]
public RemoteContentPermissionSet[] getContentPermissionSets(string in0, long in1)
{
object[] results = this.Invoke("getContentPermissionSets", new object[] {
in0,
in1});
return ((RemoteContentPermissionSet[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetContentPermissionSets(string in0, long in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getContentPermissionSets", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteContentPermissionSet[] EndgetContentPermissionSets(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteContentPermissionSet[])(results[0]));
}
/// <remarks/>
[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("getDescendentsReturn")]
public RemotePageSummary[] getDescendents(string in0, long in1)
{
object[] results = this.Invoke("getDescendents", new object[] {
in0,
in1});
return ((RemotePageSummary[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetDescendents(string in0, long in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getDescendents", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemotePageSummary[] EndgetDescendents(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemotePageSummary[])(results[0]));
}
/// <remarks/>
[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("getAncestorsReturn")]
public RemotePageSummary[] getAncestors(string in0, long in1)
{
object[] results = this.Invoke("getAncestors", new object[] {
in0,
in1});
return ((RemotePageSummary[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetAncestors(string in0, long in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getAncestors", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemotePageSummary[] EndgetAncestors(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemotePageSummary[])(results[0]));
}
/// <remarks/>
[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("getAttachmentReturn")]
public RemoteAttachment getAttachment(string in0, long in1, string in2, int in3)
{
object[] results = this.Invoke("getAttachment", new object[] {
in0,
in1,
in2,
in3});
return ((RemoteAttachment)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetAttachment(string in0, long in1, string in2, int in3, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getAttachment", new object[] {
in0,
in1,
in2,
in3}, callback, asyncState);
}
/// <remarks/>
public RemoteAttachment EndgetAttachment(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteAttachment)(results[0]));
}
/// <remarks/>
[System.Web.Services.Protocols.SoapRpcMethodAttribute("", RequestNamespace="http://soap.rpc.confluence.atlassian.com", ResponseNamespace="http://confluence/rpc/soap-axis/confluenceservice-v1")]
public void addUser(string in0, RemoteUser in1, string in2)
{
this.Invoke("addUser", new object[] {
in0,
in1,
in2});
}
/// <remarks/>
public System.IAsyncResult BeginaddUser(string in0, RemoteUser in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addUser", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public void EndaddUser(System.IAsyncResult asyncResult)
{
this.EndInvoke(asyncResult);
}
/// <remarks/>
[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("getRelatedLabelsReturn")]
public RemoteLabel[] getRelatedLabels(string in0, string in1, int in2)
{
object[] results = this.Invoke("getRelatedLabels", new object[] {
in0,
in1,
in2});
return ((RemoteLabel[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetRelatedLabels(string in0, string in1, int in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getRelatedLabels", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public RemoteLabel[] EndgetRelatedLabels(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteLabel[])(results[0]));
}
/// <remarks/>
[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]));
}
/// <remarks/>
public System.IAsyncResult BegingetSpaces(string in0, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getSpaces", new object[] {
in0}, callback, asyncState);
}
/// <remarks/>
public RemoteSpaceSummary[] EndgetSpaces(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteSpaceSummary[])(results[0]));
}
/// <remarks/>
[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("getSpaceGroupReturn")]
public RemoteSpaceGroup getSpaceGroup(string in0, string in1)
{
object[] results = this.Invoke("getSpaceGroup", new object[] {
in0,
in1});
return ((RemoteSpaceGroup)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetSpaceGroup(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getSpaceGroup", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteSpaceGroup EndgetSpaceGroup(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteSpaceGroup)(results[0]));
}
/// <remarks/>
[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("getSpaceGroupsReturn")]
public RemoteSpaceGroup[] getSpaceGroups(string in0)
{
object[] results = this.Invoke("getSpaceGroups", new object[] {
in0});
return ((RemoteSpaceGroup[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetSpaceGroups(string in0, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getSpaceGroups", new object[] {
in0}, callback, asyncState);
}
/// <remarks/>
public RemoteSpaceGroup[] EndgetSpaceGroups(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteSpaceGroup[])(results[0]));
}
/// <remarks/>
[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("removeSpaceReturn")]
public bool removeSpace(string in0, string in1)
{
object[] results = this.Invoke("removeSpace", new object[] {
in0,
in1});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginremoveSpace(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("removeSpace", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public bool EndremoveSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("convertToPersonalSpaceReturn")]
public bool convertToPersonalSpace(string in0, string in1, string in2, string in3, bool in4)
{
object[] results = this.Invoke("convertToPersonalSpace", new object[] {
in0,
in1,
in2,
in3,
in4});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginconvertToPersonalSpace(string in0, string in1, string in2, string in3, bool in4, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("convertToPersonalSpace", new object[] {
in0,
in1,
in2,
in3,
in4}, callback, asyncState);
}
/// <remarks/>
public bool EndconvertToPersonalSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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]));
}
/// <remarks/>
public System.IAsyncResult BegingetPages(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getPages", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemotePageSummary[] EndgetPages(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemotePageSummary[])(results[0]));
}
/// <remarks/>
[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("getGroupsReturn")]
public string[] getGroups(string in0)
{
object[] results = this.Invoke("getGroups", new object[] {
in0});
return ((string[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetGroups(string in0, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getGroups", new object[] {
in0}, callback, asyncState);
}
/// <remarks/>
public string[] EndgetGroups(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((string[])(results[0]));
}
/// <remarks/>
[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("setContentPermissionsReturn")]
public bool setContentPermissions(string in0, long in1, string in2, RemoteContentPermission[] in3)
{
object[] results = this.Invoke("setContentPermissions", new object[] {
in0,
in1,
in2,
in3});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginsetContentPermissions(string in0, long in1, string in2, RemoteContentPermission[] in3, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("setContentPermissions", new object[] {
in0,
in1,
in2,
in3}, callback, asyncState);
}
/// <remarks/>
public bool EndsetContentPermissions(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("moveAttachmentReturn")]
public bool moveAttachment(string in0, long in1, string in2, long in3, string in4)
{
object[] results = this.Invoke("moveAttachment", new object[] {
in0,
in1,
in2,
in3,
in4});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginmoveAttachment(string in0, long in1, string in2, long in3, string in4, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("moveAttachment", new object[] {
in0,
in1,
in2,
in3,
in4}, callback, asyncState);
}
/// <remarks/>
public bool EndmoveAttachment(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("editCommentReturn")]
public RemoteComment editComment(string in0, RemoteComment in1)
{
object[] results = this.Invoke("editComment", new object[] {
in0,
in1});
return ((RemoteComment)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegineditComment(string in0, RemoteComment in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("editComment", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteComment EndeditComment(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteComment)(results[0]));
}
/// <remarks/>
[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("getTopLevelPagesReturn")]
public RemotePageSummary[] getTopLevelPages(string in0, string in1)
{
object[] results = this.Invoke("getTopLevelPages", new object[] {
in0,
in1});
return ((RemotePageSummary[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetTopLevelPages(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getTopLevelPages", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemotePageSummary[] EndgetTopLevelPages(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemotePageSummary[])(results[0]));
}
/// <remarks/>
[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("getAttachmentDataReturn", DataType="base64Binary")]
public byte[] getAttachmentData(string in0, long in1, string in2, int in3)
{
object[] results = this.Invoke("getAttachmentData", new object[] {
in0,
in1,
in2,
in3});
return ((byte[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetAttachmentData(string in0, long in1, string in2, int in3, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getAttachmentData", new object[] {
in0,
in1,
in2,
in3}, callback, asyncState);
}
/// <remarks/>
public byte[] EndgetAttachmentData(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((byte[])(results[0]));
}
/// <remarks/>
[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("removeUserReturn")]
public bool removeUser(string in0, string in1)
{
object[] results = this.Invoke("removeUser", new object[] {
in0,
in1});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginremoveUser(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("removeUser", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public bool EndremoveUser(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("deactivateUserReturn")]
public bool deactivateUser(string in0, string in1)
{
object[] results = this.Invoke("deactivateUser", new object[] {
in0,
in1});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegindeactivateUser(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("deactivateUser", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public bool EnddeactivateUser(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("reactivateUserReturn")]
public bool reactivateUser(string in0, string in1)
{
object[] results = this.Invoke("reactivateUser", new object[] {
in0,
in1});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginreactivateUser(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("reactivateUser", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public bool EndreactivateUser(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("removeGroupReturn")]
public bool removeGroup(string in0, string in1, string in2)
{
object[] results = this.Invoke("removeGroup", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginremoveGroup(string in0, string in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("removeGroup", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndremoveGroup(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("addSpaceReturn")]
public RemoteSpace addSpace(string in0, RemoteSpace in1)
{
object[] results = this.Invoke("addSpace", new object[] {
in0,
in1});
return ((RemoteSpace)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddSpace(string in0, RemoteSpace in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addSpace", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteSpace EndaddSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteSpace)(results[0]));
}
/// <remarks/>
[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("getRecentlyUsedLabelsReturn")]
public RemoteLabel[] getRecentlyUsedLabels(string in0, int in1)
{
object[] results = this.Invoke("getRecentlyUsedLabels", new object[] {
in0,
in1});
return ((RemoteLabel[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetRecentlyUsedLabels(string in0, int in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getRecentlyUsedLabels", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteLabel[] EndgetRecentlyUsedLabels(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteLabel[])(results[0]));
}
/// <remarks/>
[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("getRecentlyUsedLabelsInSpaceReturn")]
public RemoteLabel[] getRecentlyUsedLabelsInSpace(string in0, string in1, int in2)
{
object[] results = this.Invoke("getRecentlyUsedLabelsInSpace", new object[] {
in0,
in1,
in2});
return ((RemoteLabel[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetRecentlyUsedLabelsInSpace(string in0, string in1, int in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getRecentlyUsedLabelsInSpace", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public RemoteLabel[] EndgetRecentlyUsedLabelsInSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteLabel[])(results[0]));
}
/// <remarks/>
[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("getMostPopularLabelsReturn")]
public RemoteLabel[] getMostPopularLabels(string in0, int in1)
{
object[] results = this.Invoke("getMostPopularLabels", new object[] {
in0,
in1});
return ((RemoteLabel[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetMostPopularLabels(string in0, int in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getMostPopularLabels", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteLabel[] EndgetMostPopularLabels(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteLabel[])(results[0]));
}
/// <remarks/>
[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("getMostPopularLabelsInSpaceReturn")]
public RemoteLabel[] getMostPopularLabelsInSpace(string in0, string in1, int in2)
{
object[] results = this.Invoke("getMostPopularLabelsInSpace", new object[] {
in0,
in1,
in2});
return ((RemoteLabel[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetMostPopularLabelsInSpace(string in0, string in1, int in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getMostPopularLabelsInSpace", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public RemoteLabel[] EndgetMostPopularLabelsInSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteLabel[])(results[0]));
}
/// <remarks/>
[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("setEnableWysiwygReturn")]
public bool setEnableWysiwyg(string in0, bool in1)
{
object[] results = this.Invoke("setEnableWysiwyg", new object[] {
in0,
in1});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginsetEnableWysiwyg(string in0, bool in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("setEnableWysiwyg", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public bool EndsetEnableWysiwyg(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("addGroupReturn")]
public bool addGroup(string in0, string in1)
{
object[] results = this.Invoke("addGroup", new object[] {
in0,
in1});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddGroup(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addGroup", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public bool EndaddGroup(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("getPermissionsForUserReturn")]
public string[] getPermissionsForUser(string in0, string in1, string in2)
{
object[] results = this.Invoke("getPermissionsForUser", new object[] {
in0,
in1,
in2});
return ((string[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetPermissionsForUser(string in0, string in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getPermissionsForUser", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public string[] EndgetPermissionsForUser(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((string[])(results[0]));
}
/// <remarks/>
[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("removeAllPermissionsForGroupReturn")]
public bool removeAllPermissionsForGroup(string in0, string in1)
{
object[] results = this.Invoke("removeAllPermissionsForGroup", new object[] {
in0,
in1});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginremoveAllPermissionsForGroup(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("removeAllPermissionsForGroup", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public bool EndremoveAllPermissionsForGroup(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("removeSpaceGroupReturn")]
public bool removeSpaceGroup(string in0, string in1)
{
object[] results = this.Invoke("removeSpaceGroup", new object[] {
in0,
in1});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginremoveSpaceGroup(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("removeSpaceGroup", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public bool EndremoveSpaceGroup(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("getRelatedLabelsInSpaceReturn")]
public RemoteLabel[] getRelatedLabelsInSpace(string in0, string in1, string in2, int in3)
{
object[] results = this.Invoke("getRelatedLabelsInSpace", new object[] {
in0,
in1,
in2,
in3});
return ((RemoteLabel[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetRelatedLabelsInSpace(string in0, string in1, string in2, int in3, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getRelatedLabelsInSpace", new object[] {
in0,
in1,
in2,
in3}, callback, asyncState);
}
/// <remarks/>
public RemoteLabel[] EndgetRelatedLabelsInSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteLabel[])(results[0]));
}
/// <remarks/>
[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("getSpacesContainingContentWithLabelReturn")]
public RemoteSpace[] getSpacesContainingContentWithLabel(string in0, string in1)
{
object[] results = this.Invoke("getSpacesContainingContentWithLabel", new object[] {
in0,
in1});
return ((RemoteSpace[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetSpacesContainingContentWithLabel(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getSpacesContainingContentWithLabel", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteSpace[] EndgetSpacesContainingContentWithLabel(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteSpace[])(results[0]));
}
/// <remarks/>
[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("getSpacesWithLabelReturn")]
public RemoteSpace[] getSpacesWithLabel(string in0, string in1)
{
object[] results = this.Invoke("getSpacesWithLabel", new object[] {
in0,
in1});
return ((RemoteSpace[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetSpacesWithLabel(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getSpacesWithLabel", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteSpace[] EndgetSpacesWithLabel(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteSpace[])(results[0]));
}
/// <remarks/>
[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("getLabelsByDetailReturn")]
public RemoteLabel[] getLabelsByDetail(string in0, string in1, string in2, string in3, string in4)
{
object[] results = this.Invoke("getLabelsByDetail", new object[] {
in0,
in1,
in2,
in3,
in4});
return ((RemoteLabel[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetLabelsByDetail(string in0, string in1, string in2, string in3, string in4, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getLabelsByDetail", new object[] {
in0,
in1,
in2,
in3,
in4}, callback, asyncState);
}
/// <remarks/>
public RemoteLabel[] EndgetLabelsByDetail(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteLabel[])(results[0]));
}
/// <remarks/>
[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("movePageToTopLevelReturn")]
public bool movePageToTopLevel(string in0, long in1, string in2)
{
object[] results = this.Invoke("movePageToTopLevel", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginmovePageToTopLevel(string in0, long in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("movePageToTopLevel", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndmovePageToTopLevel(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("movePageReturn")]
public bool movePage(string in0, long in1, long in2, string in3)
{
object[] results = this.Invoke("movePage", new object[] {
in0,
in1,
in2,
in3});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginmovePage(string in0, long in1, long in2, string in3, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("movePage", new object[] {
in0,
in1,
in2,
in3}, callback, asyncState);
}
/// <remarks/>
public bool EndmovePage(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("exportSpaceReturn")]
public string exportSpace(string in0, string in1, string in2)
{
object[] results = this.Invoke("exportSpace", new object[] {
in0,
in1,
in2});
return ((string)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginexportSpace(string in0, string in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("exportSpace", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public string EndexportSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((string)(results[0]));
}
/// <remarks/>
[System.Web.Services.WebMethodAttribute(MessageName="exportSpace1")]
[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("exportSpaceReturn")]
public string exportSpace(string in0, string in1, string in2, bool in3)
{
object[] results = this.Invoke("exportSpace1", new object[] {
in0,
in1,
in2,
in3});
return ((string)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginexportSpace1(string in0, string in1, string in2, bool in3, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("exportSpace1", new object[] {
in0,
in1,
in2,
in3}, callback, asyncState);
}
/// <remarks/>
public string EndexportSpace1(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((string)(results[0]));
}
/// <remarks/>
[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("getPageHistoryReturn")]
public RemotePageHistory[] getPageHistory(string in0, long in1)
{
object[] results = this.Invoke("getPageHistory", new object[] {
in0,
in1});
return ((RemotePageHistory[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetPageHistory(string in0, long in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getPageHistory", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemotePageHistory[] EndgetPageHistory(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemotePageHistory[])(results[0]));
}
/// <remarks/>
[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("removePageReturn")]
public bool removePage(string in0, long in1)
{
object[] results = this.Invoke("removePage", new object[] {
in0,
in1});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginremovePage(string in0, long in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("removePage", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public bool EndremovePage(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("renderContentReturn")]
public string renderContent(string in0, string in1, long in2, string in3, Map in4)
{
object[] results = this.Invoke("renderContent", new object[] {
in0,
in1,
in2,
in3,
in4});
return ((string)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginrenderContent(string in0, string in1, long in2, string in3, Map in4, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("renderContent", new object[] {
in0,
in1,
in2,
in3,
in4}, callback, asyncState);
}
/// <remarks/>
public string EndrenderContent(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((string)(results[0]));
}
/// <remarks/>
[System.Web.Services.WebMethodAttribute(MessageName="renderContent1")]
[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("renderContentReturn")]
public string renderContent(string in0, string in1, long in2, string in3)
{
object[] results = this.Invoke("renderContent1", new object[] {
in0,
in1,
in2,
in3});
return ((string)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginrenderContent1(string in0, string in1, long in2, string in3, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("renderContent1", new object[] {
in0,
in1,
in2,
in3}, callback, asyncState);
}
/// <remarks/>
public string EndrenderContent1(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((string)(results[0]));
}
/// <remarks/>
[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("storePageReturn")]
public RemotePage storePage(string in0, RemotePage in1)
{
object[] results = this.Invoke("storePage", new object[] {
in0,
in1});
return ((RemotePage)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginstorePage(string in0, RemotePage in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("storePage", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemotePage EndstorePage(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemotePage)(results[0]));
}
/// <remarks/>
[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("updatePageReturn")]
public RemotePage updatePage(string in0, RemotePage in1, RemotePageUpdateOptions in2)
{
object[] results = this.Invoke("updatePage", new object[] {
in0,
in1,
in2});
return ((RemotePage)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginupdatePage(string in0, RemotePage in1, RemotePageUpdateOptions in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("updatePage", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public RemotePage EndupdatePage(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemotePage)(results[0]));
}
/// <remarks/>
[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("getSpacesInGroupReturn")]
public RemoteSpaceSummary[] getSpacesInGroup(string in0, string in1)
{
object[] results = this.Invoke("getSpacesInGroup", new object[] {
in0,
in1});
return ((RemoteSpaceSummary[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetSpacesInGroup(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getSpacesInGroup", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteSpaceSummary[] EndgetSpacesInGroup(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteSpaceSummary[])(results[0]));
}
/// <remarks/>
[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("storeSpaceReturn")]
public RemoteSpace storeSpace(string in0, RemoteSpace in1)
{
object[] results = this.Invoke("storeSpace", new object[] {
in0,
in1});
return ((RemoteSpace)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginstoreSpace(string in0, RemoteSpace in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("storeSpace", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteSpace EndstoreSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteSpace)(results[0]));
}
/// <remarks/>
[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("addSpaceGroupReturn")]
public RemoteSpaceGroup addSpaceGroup(string in0, RemoteSpaceGroup in1)
{
object[] results = this.Invoke("addSpaceGroup", new object[] {
in0,
in1});
return ((RemoteSpaceGroup)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddSpaceGroup(string in0, RemoteSpaceGroup in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addSpaceGroup", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteSpaceGroup EndaddSpaceGroup(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteSpaceGroup)(results[0]));
}
/// <remarks/>
[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("addPersonalSpaceReturn")]
public RemoteSpace addPersonalSpace(string in0, RemoteSpace in1, string in2)
{
object[] results = this.Invoke("addPersonalSpace", new object[] {
in0,
in1,
in2});
return ((RemoteSpace)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddPersonalSpace(string in0, RemoteSpace in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addPersonalSpace", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public RemoteSpace EndaddPersonalSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteSpace)(results[0]));
}
/// <remarks/>
[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("getSpaceLevelPermissionsReturn")]
public string[] getSpaceLevelPermissions(string in0)
{
object[] results = this.Invoke("getSpaceLevelPermissions", new object[] {
in0});
return ((string[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetSpaceLevelPermissions(string in0, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getSpaceLevelPermissions", new object[] {
in0}, callback, asyncState);
}
/// <remarks/>
public string[] EndgetSpaceLevelPermissions(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((string[])(results[0]));
}
/// <remarks/>
[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("addPermissionToSpaceReturn")]
public bool addPermissionToSpace(string in0, string in1, string in2, string in3)
{
object[] results = this.Invoke("addPermissionToSpace", new object[] {
in0,
in1,
in2,
in3});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddPermissionToSpace(string in0, string in1, string in2, string in3, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addPermissionToSpace", new object[] {
in0,
in1,
in2,
in3}, callback, asyncState);
}
/// <remarks/>
public bool EndaddPermissionToSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("addGlobalPermissionsReturn")]
public bool addGlobalPermissions(string in0, string[] in1, string in2)
{
object[] results = this.Invoke("addGlobalPermissions", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddGlobalPermissions(string in0, string[] in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addGlobalPermissions", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndaddGlobalPermissions(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("addGlobalPermissionReturn")]
public bool addGlobalPermission(string in0, string in1, string in2)
{
object[] results = this.Invoke("addGlobalPermission", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddGlobalPermission(string in0, string in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addGlobalPermission", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndaddGlobalPermission(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("addAnonymousUsePermissionReturn")]
public bool addAnonymousUsePermission(string in0)
{
object[] results = this.Invoke("addAnonymousUsePermission", new object[] {
in0});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddAnonymousUsePermission(string in0, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addAnonymousUsePermission", new object[] {
in0}, callback, asyncState);
}
/// <remarks/>
public bool EndaddAnonymousUsePermission(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("addAnonymousViewUserProfilePermissionReturn")]
public bool addAnonymousViewUserProfilePermission(string in0)
{
object[] results = this.Invoke("addAnonymousViewUserProfilePermission", new object[] {
in0});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddAnonymousViewUserProfilePermission(string in0, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addAnonymousViewUserProfilePermission", new object[] {
in0}, callback, asyncState);
}
/// <remarks/>
public bool EndaddAnonymousViewUserProfilePermission(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("removeAnonymousViewUserProfilePermissionReturn")]
public bool removeAnonymousViewUserProfilePermission(string in0)
{
object[] results = this.Invoke("removeAnonymousViewUserProfilePermission", new object[] {
in0});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginremoveAnonymousViewUserProfilePermission(string in0, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("removeAnonymousViewUserProfilePermission", new object[] {
in0}, callback, asyncState);
}
/// <remarks/>
public bool EndremoveAnonymousViewUserProfilePermission(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("removeGlobalPermissionReturn")]
public bool removeGlobalPermission(string in0, string in1, string in2)
{
object[] results = this.Invoke("removeGlobalPermission", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginremoveGlobalPermission(string in0, string in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("removeGlobalPermission", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndremoveGlobalPermission(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("addPermissionsToSpaceReturn")]
public bool addPermissionsToSpace(string in0, string[] in1, string in2, string in3)
{
object[] results = this.Invoke("addPermissionsToSpace", new object[] {
in0,
in1,
in2,
in3});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddPermissionsToSpace(string in0, string[] in1, string in2, string in3, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addPermissionsToSpace", new object[] {
in0,
in1,
in2,
in3}, callback, asyncState);
}
/// <remarks/>
public bool EndaddPermissionsToSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("removePermissionFromSpaceReturn")]
public bool removePermissionFromSpace(string in0, string in1, string in2, string in3)
{
object[] results = this.Invoke("removePermissionFromSpace", new object[] {
in0,
in1,
in2,
in3});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginremovePermissionFromSpace(string in0, string in1, string in2, string in3, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("removePermissionFromSpace", new object[] {
in0,
in1,
in2,
in3}, callback, asyncState);
}
/// <remarks/>
public bool EndremovePermissionFromSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("editUserReturn")]
public bool editUser(string in0, RemoteUser in1)
{
object[] results = this.Invoke("editUser", new object[] {
in0,
in1});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegineditUser(string in0, RemoteUser in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("editUser", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public bool EndeditUser(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("getUserGroupsReturn")]
public string[] getUserGroups(string in0, string in1)
{
object[] results = this.Invoke("getUserGroups", new object[] {
in0,
in1});
return ((string[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetUserGroups(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getUserGroups", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public string[] EndgetUserGroups(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((string[])(results[0]));
}
/// <remarks/>
[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("addUserToGroupReturn")]
public bool addUserToGroup(string in0, string in1, string in2)
{
object[] results = this.Invoke("addUserToGroup", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddUserToGroup(string in0, string in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addUserToGroup", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndaddUserToGroup(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("removeUserFromGroupReturn")]
public bool removeUserFromGroup(string in0, string in1, string in2)
{
object[] results = this.Invoke("removeUserFromGroup", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginremoveUserFromGroup(string in0, string in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("removeUserFromGroup", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndremoveUserFromGroup(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("getActiveUsersReturn")]
public string[] getActiveUsers(string in0, bool in1)
{
object[] results = this.Invoke("getActiveUsers", new object[] {
in0,
in1});
return ((string[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetActiveUsers(string in0, bool in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getActiveUsers", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public string[] EndgetActiveUsers(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((string[])(results[0]));
}
/// <remarks/>
[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("changeMyPasswordReturn")]
public bool changeMyPassword(string in0, string in1, string in2)
{
object[] results = this.Invoke("changeMyPassword", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginchangeMyPassword(string in0, string in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("changeMyPassword", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndchangeMyPassword(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("changeUserPasswordReturn")]
public bool changeUserPassword(string in0, string in1, string in2)
{
object[] results = this.Invoke("changeUserPassword", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginchangeUserPassword(string in0, string in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("changeUserPassword", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndchangeUserPassword(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("setUserInformationReturn")]
public bool setUserInformation(string in0, RemoteUserInformation in1)
{
object[] results = this.Invoke("setUserInformation", new object[] {
in0,
in1});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginsetUserInformation(string in0, RemoteUserInformation in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("setUserInformation", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public bool EndsetUserInformation(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("getUserInformationReturn")]
public RemoteUserInformation getUserInformation(string in0, string in1)
{
object[] results = this.Invoke("getUserInformation", new object[] {
in0,
in1});
return ((RemoteUserInformation)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetUserInformation(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getUserInformation", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteUserInformation EndgetUserInformation(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteUserInformation)(results[0]));
}
/// <remarks/>
[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("hasUserReturn")]
public bool hasUser(string in0, string in1)
{
object[] results = this.Invoke("hasUser", new object[] {
in0,
in1});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginhasUser(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("hasUser", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public bool EndhasUser(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("hasGroupReturn")]
public bool hasGroup(string in0, string in1)
{
object[] results = this.Invoke("hasGroup", new object[] {
in0,
in1});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginhasGroup(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("hasGroup", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public bool EndhasGroup(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("addProfilePictureReturn")]
public bool addProfilePicture(string in0, string in1, string in2, string in3, [System.Xml.Serialization.SoapElementAttribute(DataType="base64Binary")] byte[] in4)
{
object[] results = this.Invoke("addProfilePicture", new object[] {
in0,
in1,
in2,
in3,
in4});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddProfilePicture(string in0, string in1, string in2, string in3, byte[] in4, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addProfilePicture", new object[] {
in0,
in1,
in2,
in3,
in4}, callback, asyncState);
}
/// <remarks/>
public bool EndaddProfilePicture(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("getBlogEntryByDayAndTitleReturn")]
public RemoteBlogEntry getBlogEntryByDayAndTitle(string in0, string in1, int in2, string in3)
{
object[] results = this.Invoke("getBlogEntryByDayAndTitle", new object[] {
in0,
in1,
in2,
in3});
return ((RemoteBlogEntry)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetBlogEntryByDayAndTitle(string in0, string in1, int in2, string in3, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getBlogEntryByDayAndTitle", new object[] {
in0,
in1,
in2,
in3}, callback, asyncState);
}
/// <remarks/>
public RemoteBlogEntry EndgetBlogEntryByDayAndTitle(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteBlogEntry)(results[0]));
}
/// <remarks/>
[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("getBlogEntryReturn")]
public RemoteBlogEntry getBlogEntry(string in0, long in1)
{
object[] results = this.Invoke("getBlogEntry", new object[] {
in0,
in1});
return ((RemoteBlogEntry)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetBlogEntry(string in0, long in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getBlogEntry", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteBlogEntry EndgetBlogEntry(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteBlogEntry)(results[0]));
}
/// <remarks/>
[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("getBlogEntriesReturn")]
public RemoteBlogEntrySummary[] getBlogEntries(string in0, string in1)
{
object[] results = this.Invoke("getBlogEntries", new object[] {
in0,
in1});
return ((RemoteBlogEntrySummary[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetBlogEntries(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getBlogEntries", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteBlogEntrySummary[] EndgetBlogEntries(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteBlogEntrySummary[])(results[0]));
}
/// <remarks/>
[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("storeBlogEntryReturn")]
public RemoteBlogEntry storeBlogEntry(string in0, RemoteBlogEntry in1)
{
object[] results = this.Invoke("storeBlogEntry", new object[] {
in0,
in1});
return ((RemoteBlogEntry)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginstoreBlogEntry(string in0, RemoteBlogEntry in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("storeBlogEntry", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteBlogEntry EndstoreBlogEntry(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteBlogEntry)(results[0]));
}
/// <remarks/>
[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("exportSiteReturn")]
public string exportSite(string in0, bool in1)
{
object[] results = this.Invoke("exportSite", new object[] {
in0,
in1});
return ((string)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginexportSite(string in0, bool in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("exportSite", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public string EndexportSite(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((string)(results[0]));
}
/// <remarks/>
[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("flushIndexQueueReturn")]
public bool flushIndexQueue(string in0)
{
object[] results = this.Invoke("flushIndexQueue", new object[] {
in0});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginflushIndexQueue(string in0, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("flushIndexQueue", new object[] {
in0}, callback, asyncState);
}
/// <remarks/>
public bool EndflushIndexQueue(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("clearIndexQueueReturn")]
public bool clearIndexQueue(string in0)
{
object[] results = this.Invoke("clearIndexQueue", new object[] {
in0});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginclearIndexQueue(string in0, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("clearIndexQueue", new object[] {
in0}, callback, asyncState);
}
/// <remarks/>
public bool EndclearIndexQueue(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("getClusterNodeStatusesReturn")]
public RemoteNodeStatus[] getClusterNodeStatuses(string in0)
{
object[] results = this.Invoke("getClusterNodeStatuses", new object[] {
in0});
return ((RemoteNodeStatus[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetClusterNodeStatuses(string in0, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getClusterNodeStatuses", new object[] {
in0}, callback, asyncState);
}
/// <remarks/>
public RemoteNodeStatus[] EndgetClusterNodeStatuses(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteNodeStatus[])(results[0]));
}
/// <remarks/>
[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("importSpaceReturn")]
public bool importSpace(string in0, [System.Xml.Serialization.SoapElementAttribute(DataType="base64Binary")] byte[] in1)
{
object[] results = this.Invoke("importSpace", new object[] {
in0,
in1});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginimportSpace(string in0, byte[] in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("importSpace", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public bool EndimportSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("setEnableAnonymousAccessReturn")]
public bool setEnableAnonymousAccess(string in0, bool in1)
{
object[] results = this.Invoke("setEnableAnonymousAccess", new object[] {
in0,
in1});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginsetEnableAnonymousAccess(string in0, bool in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("setEnableAnonymousAccess", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public bool EndsetEnableAnonymousAccess(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("getLabelsByIdReturn")]
public RemoteLabel[] getLabelsById(string in0, long in1)
{
object[] results = this.Invoke("getLabelsById", new object[] {
in0,
in1});
return ((RemoteLabel[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetLabelsById(string in0, long in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getLabelsById", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteLabel[] EndgetLabelsById(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteLabel[])(results[0]));
}
/// <remarks/>
[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("getLabelContentByIdReturn")]
public RemoteSearchResult[] getLabelContentById(string in0, long in1)
{
object[] results = this.Invoke("getLabelContentById", new object[] {
in0,
in1});
return ((RemoteSearchResult[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetLabelContentById(string in0, long in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getLabelContentById", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteSearchResult[] EndgetLabelContentById(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteSearchResult[])(results[0]));
}
/// <remarks/>
[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("getLabelContentByNameReturn")]
public RemoteSearchResult[] getLabelContentByName(string in0, string in1)
{
object[] results = this.Invoke("getLabelContentByName", new object[] {
in0,
in1});
return ((RemoteSearchResult[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetLabelContentByName(string in0, string in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getLabelContentByName", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteSearchResult[] EndgetLabelContentByName(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteSearchResult[])(results[0]));
}
/// <remarks/>
[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("getLabelContentByObjectReturn")]
public RemoteSearchResult[] getLabelContentByObject(string in0, RemoteLabel in1)
{
object[] results = this.Invoke("getLabelContentByObject", new object[] {
in0,
in1});
return ((RemoteSearchResult[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetLabelContentByObject(string in0, RemoteLabel in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getLabelContentByObject", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemoteSearchResult[] EndgetLabelContentByObject(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemoteSearchResult[])(results[0]));
}
/// <remarks/>
[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("addLabelByNameReturn")]
public bool addLabelByName(string in0, string in1, long in2)
{
object[] results = this.Invoke("addLabelByName", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddLabelByName(string in0, string in1, long in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addLabelByName", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndaddLabelByName(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("addLabelByIdReturn")]
public bool addLabelById(string in0, long in1, long in2)
{
object[] results = this.Invoke("addLabelById", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddLabelById(string in0, long in1, long in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addLabelById", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndaddLabelById(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("addLabelByObjectReturn")]
public bool addLabelByObject(string in0, RemoteLabel in1, long in2)
{
object[] results = this.Invoke("addLabelByObject", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddLabelByObject(string in0, RemoteLabel in1, long in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addLabelByObject", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndaddLabelByObject(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("addLabelByNameToSpaceReturn")]
public bool addLabelByNameToSpace(string in0, string in1, string in2)
{
object[] results = this.Invoke("addLabelByNameToSpace", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddLabelByNameToSpace(string in0, string in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addLabelByNameToSpace", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndaddLabelByNameToSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("removeLabelByNameReturn")]
public bool removeLabelByName(string in0, string in1, long in2)
{
object[] results = this.Invoke("removeLabelByName", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginremoveLabelByName(string in0, string in1, long in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("removeLabelByName", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndremoveLabelByName(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("removeLabelByIdReturn")]
public bool removeLabelById(string in0, long in1, long in2)
{
object[] results = this.Invoke("removeLabelById", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginremoveLabelById(string in0, long in1, long in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("removeLabelById", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndremoveLabelById(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("removeLabelByObjectReturn")]
public bool removeLabelByObject(string in0, RemoteLabel in1, long in2)
{
object[] results = this.Invoke("removeLabelByObject", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginremoveLabelByObject(string in0, RemoteLabel in1, long in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("removeLabelByObject", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndremoveLabelByObject(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("removeLabelByNameFromSpaceReturn")]
public bool removeLabelByNameFromSpace(string in0, string in1, string in2)
{
object[] results = this.Invoke("removeLabelByNameFromSpace", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginremoveLabelByNameFromSpace(string in0, string in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("removeLabelByNameFromSpace", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndremoveLabelByNameFromSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("removeAnonymousUsePermissionReturn")]
public bool removeAnonymousUsePermission(string in0)
{
object[] results = this.Invoke("removeAnonymousUsePermission", new object[] {
in0});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginremoveAnonymousUsePermission(string in0, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("removeAnonymousUsePermission", new object[] {
in0}, callback, asyncState);
}
/// <remarks/>
public bool EndremoveAnonymousUsePermission(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("addAnonymousPermissionToSpaceReturn")]
public bool addAnonymousPermissionToSpace(string in0, string in1, string in2)
{
object[] results = this.Invoke("addAnonymousPermissionToSpace", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddAnonymousPermissionToSpace(string in0, string in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addAnonymousPermissionToSpace", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndaddAnonymousPermissionToSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("addAnonymousPermissionsToSpaceReturn")]
public bool addAnonymousPermissionsToSpace(string in0, string[] in1, string in2)
{
object[] results = this.Invoke("addAnonymousPermissionsToSpace", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginaddAnonymousPermissionsToSpace(string in0, string[] in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("addAnonymousPermissionsToSpace", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndaddAnonymousPermissionsToSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("removeAnonymousPermissionFromSpaceReturn")]
public bool removeAnonymousPermissionFromSpace(string in0, string in1, string in2)
{
object[] results = this.Invoke("removeAnonymousPermissionFromSpace", new object[] {
in0,
in1,
in2});
return ((bool)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginremoveAnonymousPermissionFromSpace(string in0, string in1, string in2, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("removeAnonymousPermissionFromSpace", new object[] {
in0,
in1,
in2}, callback, asyncState);
}
/// <remarks/>
public bool EndremoveAnonymousPermissionFromSpace(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((bool)(results[0]));
}
/// <remarks/>
[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("getPagePermissionsReturn")]
public RemotePermission[] getPagePermissions(string in0, long in1)
{
object[] results = this.Invoke("getPagePermissions", new object[] {
in0,
in1});
return ((RemotePermission[])(results[0]));
}
/// <remarks/>
public System.IAsyncResult BegingetPagePermissions(string in0, long in1, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("getPagePermissions", new object[] {
in0,
in1}, callback, asyncState);
}
/// <remarks/>
public RemotePermission[] EndgetPagePermissions(System.IAsyncResult asyncResult)
{
object[] results = this.EndInvoke(asyncResult);
return ((RemotePermission[])(results[0]));
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://xml.apache.org/xml-soap")]
public partial class Map
{
/// <remarks/>
public mapItem[] item;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://xml.apache.org/xml-soap")]
public partial class mapItem
{
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public object key;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public object value;
}
/// <remarks/>
[System.Xml.Serialization.SoapIncludeAttribute(typeof(NotPermittedException))]
[System.Xml.Serialization.SoapIncludeAttribute(typeof(VersionMismatchException))]
[System.Xml.Serialization.SoapIncludeAttribute(typeof(AuthenticationFailedException))]
[System.Xml.Serialization.SoapIncludeAttribute(typeof(AlreadyExistsException))]
[System.Xml.Serialization.SoapIncludeAttribute(typeof(InvalidSessionException))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://rpc.confluence.atlassian.com")]
public partial class RemoteException
{
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://rpc.confluence.atlassian.com")]
public partial class NotPermittedException : RemoteException
{
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://rpc.confluence.atlassian.com")]
public partial class VersionMismatchException : RemoteException
{
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://rpc.confluence.atlassian.com")]
public partial class AuthenticationFailedException : RemoteException
{
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://rpc.confluence.atlassian.com")]
public partial class AlreadyExistsException : RemoteException
{
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://rpc.confluence.atlassian.com")]
public partial class InvalidSessionException : RemoteException
{
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://xml.apache.org/xml-soap")]
public partial class Vector
{
/// <remarks/>
public object[] item;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")]
public partial class RemotePermission
{
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string lockType;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string lockedBy;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")]
public partial class RemoteNodeStatus
{
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public Map JVMstats;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public Map buildStats;
/// <remarks/>
public int nodeId;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public Map props;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")]
public partial class RemoteUserInformation
{
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string content;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public System.Nullable<System.DateTime> creationDate;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string creatorName;
/// <remarks/>
public long id;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public System.Nullable<System.DateTime> lastModificationDate;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string lastModifierName;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string username;
/// <remarks/>
public int version;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")]
public partial class RemotePageUpdateOptions
{
/// <remarks/>
public bool minorEdit;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string versionComment;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")]
public partial class RemotePageHistory
{
/// <remarks/>
public long id;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public System.Nullable<System.DateTime> modified;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string modifier;
/// <remarks/>
public int version;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")]
public partial class RemoteSpaceGroup
{
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string creatorName;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string key;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string licenseKey;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string name;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")]
public partial class RemoteLabel
{
/// <remarks/>
public long id;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string name;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string @namespace;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string owner;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")]
public partial class RemoteContentPermissionSet
{
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public RemoteContentPermission[] contentPermissions;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string type;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")]
public partial class RemoteContentPermission
{
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string groupName;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string type;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string userName;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[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
{
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string comment;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string contentType;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public System.Nullable<System.DateTime> created;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string creator;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string fileName;
/// <remarks/>
public long fileSize;
/// <remarks/>
public long id;
/// <remarks/>
public long pageId;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string title;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string url;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")]
public partial class RemoteClusterInformation
{
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string description;
/// <remarks/>
public int memberCount;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public object[] members;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string multicastAddress;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string multicastPort;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string name;
/// <remarks/>
public bool running;
}
/// <remarks/>
[System.Xml.Serialization.SoapIncludeAttribute(typeof(RemoteSpace))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[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
{
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string key;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string name;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string type;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string url;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[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
{
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string description;
/// <remarks/>
public long homePage;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string spaceGroup;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")]
public partial class RemoteUser
{
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string email;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string fullname;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string name;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string url;
}
/// <remarks/>
[System.Xml.Serialization.SoapIncludeAttribute(typeof(RemoteBlogEntrySummary))]
[System.Xml.Serialization.SoapIncludeAttribute(typeof(RemoteBlogEntry))]
[System.Xml.Serialization.SoapIncludeAttribute(typeof(RemotePageSummary))]
[System.Xml.Serialization.SoapIncludeAttribute(typeof(RemotePage))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[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
{
/// <remarks/>
public long id;
/// <remarks/>
public int permissions;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string space;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string title;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string url;
}
/// <remarks/>
[System.Xml.Serialization.SoapIncludeAttribute(typeof(RemoteBlogEntry))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")]
public partial class RemoteBlogEntrySummary : AbstractRemotePageSummary
{
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string author;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public System.Nullable<System.DateTime> publishDate;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")]
public partial class RemoteBlogEntry : RemoteBlogEntrySummary
{
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string content;
/// <remarks/>
public int version;
}
/// <remarks/>
[System.Xml.Serialization.SoapIncludeAttribute(typeof(RemotePage))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[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
{
/// <remarks/>
public long parentId;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[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
{
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string content;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string contentStatus;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public System.Nullable<System.DateTime> created;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string creator;
/// <remarks/>
public bool current;
/// <remarks/>
public bool homePage;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public System.Nullable<System.DateTime> modified;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string modifier;
/// <remarks/>
public int version;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")]
public partial class RemoteServerInfo
{
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string baseUrl;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string buildId;
/// <remarks/>
public bool developmentBuild;
/// <remarks/>
public int majorVersion;
/// <remarks/>
public int minorVersion;
/// <remarks/>
public int patchLevel;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="http://beans.soap.rpc.confluence.atlassian.com")]
public partial class RemoteComment
{
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string content;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public System.Nullable<System.DateTime> created;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string creator;
/// <remarks/>
public long id;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public System.Nullable<System.DateTime> modified;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string modifier;
/// <remarks/>
public long pageId;
/// <remarks/>
public long parentId;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string title;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string url;
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("SharpDevelop", "3.2.0.5777")]
[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
{
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string excerpt;
/// <remarks/>
public long id;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string title;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string type;
/// <remarks/>
[System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
public string url;
}
}