DAVAdapter.Submit Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Exécute l'opération d'envoi sur l'adaptateur associé.
public:
void Submit();
public void Submit ();
abstract member Submit : unit -> unit
Public Sub Submit ()
Exemples
Dans l’exemple suivant, la méthode Submit de l’objet DAVAdapterObject est utilisée pour envoyer un document XML à une bibliothèque de documents Windows SharePoint Server. Ce code requiert une Connexion de données à une bibliothèque de formulaires SharePoint nommée « Submit ».
// Get the first data adapter; a "SharePoint Library" submit adapter
DAVAdapter davAdapter = thisXDocument.DataAdapters["Submit"] as DAVAdapter;
if (davAdapter == null)
{
thisXDocument.UI.Alert("SharePoint submit list adapter called 'Submit' was not found.");
return;
}
// Set the file name to be the today's date (as an .xml file)
davAdapter.FileName = DateTime.Today.ToShortDateString() + ".xml";
if (davAdapter.SubmitAllowed)
{
try
{
davAdapter.<span class="label">Submit</span>();
}
catch (Exception ex)
{
// The save failed
thisXDocument.UI.Alert("Saving to " + davAdapter.FolderURL + " as " + davAdapter.FileName + " failed." + Environment.NewLine + "Reason: " + ex.Message);
}
}
else
{
thisXDocument.UI.Alert("Submit is not allowed on adapter " + davAdapter.Name + ".");
}