Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

PublishXmlRequest.ParameterXml Property

Definition

Namespace:
Microsoft.Crm.Sdk.Messages
Assembly:
Microsoft.Crm.Sdk.Proxy.dll
Package:
Microsoft.PowerPlatform.Dataverse.Client v1.2.10

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets or sets the XML that defines which solution components to publish in this request. Required.

public:
 property System::String ^ ParameterXml { System::String ^ get(); void set(System::String ^ value); };
public string ParameterXml { get; set; }
member this.ParameterXml : string with get, set
Public Property ParameterXml As String

Property Value

the XML that defines which solution components to publish in this request. Required.

Remarks

Use the Publish request schema to compose the correct XML to pass for this parameter.

You can publish the following solution components:

Entities

Use the logical name of the entity. The following example publishes just the account entity including any attributes, ribbons or forms associated with it.

<importexportxml>
<entities>
<entity>account</entity>
</entities>
</importexportxml>

Ribbons

Publishes the Application Ribbon. You do not need to specify any value. The application ribbon will be published as long as the <ribbon> node is present.

<importexportxml>
<ribbons>
<ribbon></ribbon>
</ribbons>
</importexportxml>

Dashboards

Publishes the SystemForm (dashboard) for the ID value passed.

<importexportxml>
<dashboards>
<dashboard>{DEDBADA0-1C50-4E0B-BC88-5CE4225D6561}</dashboard>
</dashboards>
</importexportxml>

Option Sets

Publishes an optionset using the optionset unique name.

<importexportxml>
<optionsets>
<optionset>sample_customoptionset</optionset>
</optionsets>
</importexportxml>

Site Map

Publishes the SiteMap. Since there is only one sitemap it is not necessary to pass a value.

<importexportxml>
<sitemaps>
<sitemap></sitemap>
</sitemaps>
</importexportxml>

Web Resources

Publishes a Web resource using the web resource id value.

<importexportxml>
<webresources>
<webresource>{025225B2-CF33-4CDB-8ACD-C6205404191E}</webresource>
</webresources>
</importexportxml>

The following example publishes the account and contact entity together with two Web resources.

<importexportxml>
<entities>
<entity>account</entity>
<entity>contact</entity>
</entities>
<webresources>
<webresource>{025225B2-CF33-4CDB-8ACD-C6205404191E}</webresource>
<webresource>{6B72CB14-D27D-4197-B494-C1A06C977C41}</webresource>
</webresources>
</importexportxml>

Applies to