Class LocalDeploymentProvider
- Namespace
 - Dynamicweb.Deployment
 
- Assembly
 - Dynamicweb.Deployment.dll
 
Represents a deployment provider for the local installation.
  
  public class LocalDeploymentProvider : DeploymentProvider
  - Inheritance
 - 
      
      
      LocalDeploymentProvider
 
- Inherited Members
 
Constructors
LocalDeploymentProvider(string, Uri)
Initializes a new instance of the LocalDeploymentProvider class.
  
  public LocalDeploymentProvider(string name, Uri url)
  Parameters
- See Also
 
LocalDeploymentProvider(Uri)
Initializes a new instance of the LocalDeploymentProvider class.
  
  public LocalDeploymentProvider(Uri url)
  Parameters
urlUri- The URL.
 
- See Also
 
Properties
DataGroupRepository
Gets or sets the data group repository.
  
  public DataGroupRepository DataGroupRepository { get; set; }
  Property Value
- DataGroupRepository
 - The data group repository.
 
- See Also
 
ExportFolder
Gets or set the folder to export packages.
  
  public string ExportFolder { get; set; }
  Property Value
- string
 - The folder name.
 
- See Also
 
Name
Gets the name.
  
  public override string Name { get; }
  Property Value
- string
 - The name.
 
- See Also
 
Url
Gets the URL.
  
  public override Uri Url { get; }
  Property Value
- Uri
 - The URL.
 
- See Also
 
Methods
ExportPackage(string, DeploymentSet, Tracker)
Exports the package.
  
  protected override Package ExportPackage(string id, DeploymentSet deploymentSet, Tracker tracker)
  Parameters
idstring- The identifier.
 deploymentSetDeploymentSet- The deployment set.
 trackerTracker- The tracker.
 
Returns
- See Also
 
GetDataGroup(string)
Gets the data group.
  
  public override DataGroup GetDataGroup(string dataGroupId)
  Parameters
dataGroupIdstring- The data group identifier.
 
Returns
- See Also
 
GetDataGroups()
Gets the data groups.
  
  public override IEnumerable<DataGroup> GetDataGroups()
  Returns
- See Also
 
GetDataItemInfos(DataItemSelection)
Gets the data item infos.
  
  public override IEnumerable<DataItemInfo> GetDataItemInfos(DataItemSelection selection)
  Parameters
selectionDataItemSelection- The selection.
 
Returns
- See Also
 
GetDataItems(DataItemSelection)
Gets the data items.
  
  public override IEnumerable<DataItem> GetDataItems(DataItemSelection selection)
  Parameters
selectionDataItemSelection- The selection.
 
Returns
- See Also
 
GetSystemInformation()
Gets the system information.
  
  public override Dictionary<string, string> GetSystemInformation()
  Returns
- Dictionary<string, string>
 - A dictionary of system information
 
- See Also
 
ImportPackage(string, Package, Tracker)
Imports the package.
  
  protected override void ImportPackage(string id, Package package, Tracker tracker)
  Parameters
- See Also