I'm playing with the Sites.ExportWeb service in SharePoint, and I've gotten it to the point of returning an integer value.
My problem is I can't find any documentation anywhere about what these return values mean!
My C# code is below, the return value I'm getting is 5, but obviously I need to know what all possible return values mean :)
SitesWebReference.Sites siteservice = new SitesWebReference.Sites();
siteservice.Credentials = System.Net.CredentialCache.DefaultCredentials;
int ret = siteservice.ExportWeb("exportJob", source, "http://sharepoint/sites/MySite/Export", true, true, false, 1000);
Would anyone know or have what the return values from ExportWeb and its friend ImportWeb actually mean?
Thanks