ActionParameter.MergeXml Method

Reads the ActionParameter definition from the specified resource XML for the specified Action; then merges its properties, localized names, and access control entries with the existing ActionParameter in the metadata store.

Namespace:  Microsoft.SharePoint.BusinessData.Administration.Client
Assembly:  Microsoft.SharePoint.BusinessData.Administration.Client (in Microsoft.SharePoint.BusinessData.Administration.Client.dll)

Syntax

'Declaration
Public Shared Function MergeXml ( _
    xml As String, _
    <OutAttribute> ByRef errors As String(), _
    packageContents As PackageContents, _
    action As Action, _
    settingId As String _
) As ActionParameter
'Usage
Dim xml As String
Dim errors As String()
Dim packageContents As PackageContents
Dim action As Action
Dim settingId As String
Dim returnValue As ActionParameter

returnValue = ActionParameter.MergeXml(xml, _
    errors, packageContents, action, _
    settingId)
public static ActionParameter MergeXml(
    string xml,
    out string[] errors,
    PackageContents packageContents,
    Action action,
    string settingId
)

Parameters

  • errors
    Type: []

    A list of the noncritical errors that occurred when merging data or reading the XML.

  • settingId
    Type: System.String

    The identifier of a partition in the metadata store to store properties, localized names, and access control entries in; a null reference (Nothing in Visual Basic) indicates default settings.

Return Value

Type: Microsoft.SharePoint.BusinessData.Administration.Client.ActionParameter
The merged ActionParameter.

Exceptions

Exception Condition
ArgumentNullException

The xml or action parameter is a null reference (Nothing in Visual Basic).

ArgumentException

The packageContents parameter has the PackageContents.Model value set.

MetadataObjectNotFoundException

The ActionParameter does not exist in the specified Action.

Remarks

This method allows you to specify which resources that are present in the given metadata XML string are to be added to the metadata store via the packageContents parameter.

If the PackageContents.Properties value is specified in the packageContents parameter, BDC will create all the properties in the given XML in the specified setting. If a property with the same name exists, it will be replaced by the new property. Merging properties requires “Edit” permissions in the specified setting.

If PackageContents.LocalizedNames value is specified in the packageContents parameter, BDC will create all the localized names in the given XML in the specified setting. If a localized name with the same LCID exists, it will be replaced by the new localized name. Merging localized names requires “Edit” permissions in the specified setting.

If PackageContents.Permissions value is specified in the packageContents, BDC will replace existing permissions with the new permissions in the given XML. Merging permissions requires the “SetPermissions” permission in the specified setting.

See Also

Reference

ActionParameter Class

ActionParameter Members

Microsoft.SharePoint.BusinessData.Administration.Client Namespace