SPExportMethodType Simple Type (DeploymentExportSettings)

Applies to: SharePoint 2016 | SharePoint Foundation 2013 | SharePoint Online | SharePoint Server 2013

Provides values for the ExportMethod attribute on the ExportSettings Element (DeploymentExportSettings).

Definition

<xs:simpleType name="SPExportMethodType">
        <xs:restriction base="xs:string">
                <xs:enumeration value="ExportAll" />
                <xs:enumeration value="ExportChanges" />
        </xs:restriction>
</xs:simpleType>

Enumeration values

Value Description
ExportAll
Specifies that all export objects should be exported to the content migration package.
ExportChanges
Specifies that only export objects that have changed since the last version of the content migration package should be exported.

Remarks

The SPExportMethodType simple type value specifies whether the export operation is full (all objects) or incremental (only those that have changed since the last version of the migration package).

See also