//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls.WebParts {
using System;
///
///
/// Specifies what properties can be exported from a WebPart.
///
///
public enum WebPartExportMode {
///
///
/// The Part is not exportable.
///
///
None = 0,
///
///
/// All properties can be exported.
///
///
All = 1,
///
///
/// Only non-sensitive data can be exported.
///
///
NonSensitiveData = 2,
}
}