本文整理汇总了C#中System.Management.Automation.PSDriveInfo.SetRoot方法的典型用法代码示例。如果您正苦于以下问题:C# PSDriveInfo.SetRoot方法的具体用法?C# PSDriveInfo.SetRoot怎么用?C# PSDriveInfo.SetRoot使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Management.Automation.PSDriveInfo
的用法示例。
在下文中一共展示了PSDriveInfo.SetRoot方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ValidateDriveWithProvider
private PSDriveInfo ValidateDriveWithProvider(
DriveCmdletProvider driveProvider,
PSDriveInfo drive,
CmdletProviderContext context,
bool resolvePathIfPossible)
{
Dbg.Diagnostics.Assert(
drive != null,
"drive should have been validated by the caller");
Dbg.Diagnostics.Assert(
driveProvider != null,
"driveProvider should have been validated by the caller");
// Mark the drive as being created so that the provider can modify the
// root if necessary
drive.DriveBeingCreated = true;
// Only try to resolve the root as an MSH path if there is a current drive.
if (CurrentDrive != null && resolvePathIfPossible)
{
string newRoot = GetProviderRootFromSpecifiedRoot(drive.Root, drive.Provider);
if (newRoot != null)
{
drive.SetRoot(newRoot);
}
}
PSDriveInfo result = null;
try
{
result = driveProvider.NewDrive(drive, context);
}
catch (LoopFlowException)
{
throw;
}
catch (PipelineStoppedException)
{
throw;
}
catch (ActionPreferenceStopException)
{
throw;
}
catch (Exception e) // Catch-all OK, 3rd party callout
{
CommandProcessorBase.CheckForSevereException(e);
ProviderInvocationException pie =
NewProviderInvocationException(
"NewDriveProviderException",
SessionStateStrings.NewDriveProviderException,
driveProvider.ProviderInfo,
drive.Root,
e);
context.WriteError(
new ErrorRecord(
pie.ErrorRecord,
pie));
}
finally
{
drive.DriveBeingCreated = false;
}
return result;
} // ValidateDriveWithProvider
示例2: ValidateDriveWithProvider
private PSDriveInfo ValidateDriveWithProvider(DriveCmdletProvider driveProvider, PSDriveInfo drive, CmdletProviderContext context, bool resolvePathIfPossible)
{
drive.DriveBeingCreated = true;
if ((this.CurrentDrive != null) && resolvePathIfPossible)
{
string providerRootFromSpecifiedRoot = this.GetProviderRootFromSpecifiedRoot(drive.Root, drive.Provider);
if (providerRootFromSpecifiedRoot != null)
{
drive.SetRoot(providerRootFromSpecifiedRoot);
}
}
PSDriveInfo info = null;
try
{
info = driveProvider.NewDrive(drive, context);
}
catch (LoopFlowException)
{
throw;
}
catch (PipelineStoppedException)
{
throw;
}
catch (ActionPreferenceStopException)
{
throw;
}
catch (Exception exception)
{
CommandProcessorBase.CheckForSevereException(exception);
ProviderInvocationException replaceParentContainsErrorRecordException = this.NewProviderInvocationException("NewDriveProviderException", SessionStateStrings.NewDriveProviderException, driveProvider.ProviderInfo, drive.Root, exception);
context.WriteError(new ErrorRecord(replaceParentContainsErrorRecordException.ErrorRecord, replaceParentContainsErrorRecordException));
}
finally
{
drive.DriveBeingCreated = false;
}
return info;
}