Gets or sets a value that specifies whether you want to do a full or incremental export.
Namespace: Microsoft.SharePoint.Deployment
Assembly: Microsoft.SharePoint (in microsoft.sharepoint.dll)

Syntax
Visual Basic (Declaration)
<XmlAttributeAttribute(AttributeName:="ExportMethod")> _
Public Property ExportMethod As SPExportMethodType
Dim instance As SPExportSettings
Dim value As SPExportMethodType
value = instance.ExportMethod
instance.ExportMethod = value
[XmlAttributeAttribute(AttributeName="ExportMethod")]
public SPExportMethodType ExportMethod { get; set; }
Property Value
An
SPExportMethodType value.

Remarks
This property is used to determine which objects should be exported within the specified scope. The choices are:
ExportAll. Exports all objects within the specified scope regardless of whether they have been exported previously.
ExportChanges. Export only the objects that have changed since the last export operation (using the value of the ExportChangeToken property).

See Also