Torna al Thread
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://www..../WorkspaceSynchronization/AddItem", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Bare)]
[return: System.Xml.Serialization.XmlElementAttribute("AddItemReply", Namespace="http://..../schema/WorkspaceSynchronizationMessages")]
[WebMethod]
public AddItemReplyType AddItem([System.Xml.Serialization.XmlElementAttribute(Namespace="http://..../schema/WorkspaceSynchronizationMessages")] AddItemRequestType AddItemRequest)
{
string foldId = AddItemRequest.folderId;
string docName = AddItemRequest.name;
//...
AddItemReplyType reply = new AddItemReplyType();
reply.documentId = newDocId;
return reply;
}