DAVAdapter.SubmitData - Méthode
Envoie l'élément DOM ou le document DOM spécifié à un adaptateur de données.
Espace de noms : Microsoft.Office.Interop.InfoPath
Assembly : Microsoft.Office.Interop.InfoPath (dans Microsoft.Office.Interop.InfoPath.dll)
Syntaxe
'Déclaration
Sub SubmitData ( _
pData As IXMLDOMNode _
)
'Utilisation
Dim instance As DAVAdapter
Dim pData As IXMLDOMNode
instance.SubmitData(pData)
void SubmitData(
IXMLDOMNode pData
)
Paramètres
pData
Type : Microsoft.Office.Interop.InfoPath.Xml.IXMLDOMNodeDonnées XML à envoyer.
Exemples
Dans l'exemple suivant, la méthode SubmitData de l'objet DAVAdapterObject est utilisée pour envoyer un document XML qui contient un élément DOM, my:group1, à une bibliothèque de documents Windows SharePoint Server. Ce code requiert une bibliothèque de formulaires SharePoint Connexion de données nommée « Envoyer » et que my:group1 existe dans la source de données sous l'élément de document, par exemple, my:myFields.
// 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";
// Get my:group1 from the data source
IXMLDOMNode group1Node = thisXDocument.DOM.selectSingleNode("/my:myFields/my:group1");
// Check if group1 exists
if (group1Node != null)
{
if (davAdapter.SubmitAllowed)
{
try
{
davAdapter.SubmitData(group1Node);
}
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 + ".");
}
}
else
{
// my:group1 does not exist
thisXDocument.UI.Alert("my:group1 does not exist in the form.");
}