DownloadFileFromHive() public method

public DownloadFileFromHive ( string absoluteFilePath, string outPutFolder, string SharePointOnline_OR_OnPremise = Constants.OnPremise, string UserName = "NA", string Password = "NA", string Domain = "NA" ) : void
absoluteFilePath string
outPutFolder string
SharePointOnline_OR_OnPremise string
UserName string
Password string
Domain string
return void
Ejemplo n.º 1
0
        protected override void ProcessRecord()
        {
            GhostingAndUnGhostingHelper obj = new GhostingAndUnGhostingHelper();

            obj.DownloadFileFromHive(AbsoluteFilePath.Trim(), OutPutDirectory.Trim(), SharePointOnline_OR_OnPremise.Trim(), UserName.Trim(), Password.Trim(), Domain.Trim());
        }
Ejemplo n.º 2
0
 protected override void ProcessRecord()
 {
     GhostingAndUnGhostingHelper obj = new GhostingAndUnGhostingHelper();
     obj.DownloadFileFromHive(AbsoluteFilePath.Trim(), OutPutDirectory.Trim(), SharePointOnline_OR_OnPremise.Trim(), UserName.Trim(), Password.Trim(), Domain.Trim());
 }