diff --git a/PowerShellStandard.psm1 b/PowerShellStandard.psm1 index d357b49..f7c17f3 100644 --- a/PowerShellStandard.psm1 +++ b/PowerShellStandard.psm1 @@ -1,17 +1,24 @@ function Start-Build { param ( [switch]$CoreOnly ) - $versions = 3,5 + # $versions = 3,5 + $versions = 5 $srcBase = Join-Path $PsScriptRoot src foreach ( $version in $versions ) { try { $srcDir = Join-Path $srcBase $version Push-Location $srcDir - dotnet restore + Write-Verbose -Verbose "restoring in $srcDir" + $result = dotnet restore + if ( ! $? ) { throw "$result" } if ( $CoreOnly ) { - dotnet build --configuration Release --framework netstandard2.0 + Write-Verbose -Verbose "building netstandard in $srcDir" + $result = dotnet build --configuration Release --framework netstandard2.0 + if ( ! $? ) { throw "$result" } } else { - dotnet build --configuration Release + Write-Verbose -Verbose "building default in $srcDir" + $result = dotnet build --configuration Release + if ( ! $? ) { throw "$result" } else { Write-Verbose -Verbose "$result" } } } finally { @@ -23,8 +30,12 @@ function Start-Build { try { $templateBase = Join-Path $srcBase dotnetTemplate Push-Location $templateBase - dotnet restore - dotnet build --configuration Release + Write-Verbose -Verbose "restoring in $templateBase" + $result = dotnet restore + if ( ! $? ) { throw "$result" } + Write-Verbose -Verbose "building in $templateBase" + $result = dotnet build --configuration Release + if ( ! $? ) { throw "$result" } else { Write-Verbose -Verbose "$result" } } finally { Pop-Location @@ -41,7 +52,9 @@ function Start-Clean { try { $fileDir = Join-Path $baseDir $version Push-Location $fileDir - dotnet clean + "Cleaning in $fileDir" + $result = dotnet clean + if ( ! $? ) { write-error "$result" } if ( test-path obj ) { remove-item -recurse -force obj } if ( test-path bin ) { remove-item -recurse -force bin } remove-item "PowerShellStandard.Library.${version}*.nupkg" -ErrorAction SilentlyContinue @@ -77,11 +90,13 @@ function Invoke-Test { try { Push-Location $framework if ( $CoreOnly ) { - dotnet build --configuration Release --framework netstandard2.0 + $result = dotnet build --configuration Release --framework netstandard2.0 + if ( ! $? ) { throw "$result" } Invoke-Pester } else { - dotnet build --configuration Release + $result = dotnet build --configuration Release + if ( ! $? ) { throw "$result" } Invoke-Pester } } @@ -108,12 +123,14 @@ function Export-NuGetPackage { # create the package # it will automatically build - $versions = 3,5 + # $versions = 3,5 + $versions = 5 $srcBase = Join-Path $PsScriptRoot src foreach ( $version in $versions ) { try { $srcDir = Join-Path $srcBase $version Push-Location $srcDir + Write-Verbose -Verbose "Creating nupkg for $version" $result = dotnet pack --configuration Release if ( $? ) { Copy-Item -verbose:$true (Join-Path $srcDir "bin/Release/PowerShellStandard.Library*.nupkg") $PsScriptRoot @@ -130,6 +147,7 @@ function Export-NuGetPackage try { $templateDir = Join-Path $PsScriptRoot src/dotnetTemplate Push-Location $templateDir + Write-Verbose -Verbose "creating nupkg in $templateDir" $result = dotnet pack --configuration Release if ( $? ) { Copy-Item -verbose:$true (Join-Path $templateDir "bin/Release/*.nupkg") $PsScriptRoot diff --git a/build.ps1 b/build.ps1 index 053cdd0..7a011d9 100644 --- a/build.ps1 +++ b/build.ps1 @@ -6,6 +6,7 @@ param ( [Parameter(HelpMessage="Build only for netstandard2.0")][switch]$CoreOnly ) +Write-Progress -Activity "Importing module" import-module $PSScriptRoot/PowerShellStandard.psm1 -force if ( $Clean ) { @@ -20,6 +21,7 @@ if ( $IsLinux -or $IsMacOS ) { $CoreOnly = $true } +Write-Progress -Activity "Starting Build" if ( $Pack ) { if ( $CoreOnly ) { Write-Warning "Must build both netstandard2.0 and net452 to build package" @@ -32,6 +34,9 @@ else { } if ( $Test ) { + if ( $psversiontable.psversion.major -lt 6 ) { + throw "Must run tests on PowerShell Core 6 or above" + } Invoke-Test -CoreOnly:$CoreOnly } diff --git a/src/3/System.Management.Automation-lib.cs b/src/3/System.Management.Automation-lib.cs index 84c38b9..0e459b4 100644 --- a/src/3/System.Management.Automation-lib.cs +++ b/src/3/System.Management.Automation-lib.cs @@ -34,7 +34,7 @@ public static class AdapterCodeMethods { #endif public sealed class DeserializingTypeConverter : System.Management.Automation.PSTypeConverter { public DeserializingTypeConverter() { } - + public override bool CanConvertFrom(System.Management.Automation.PSObject sourceValue, System.Type destinationType) { return default(bool); } public override bool CanConvertFrom(object sourceValue, System.Type destinationType) { return default(bool); } public override bool CanConvertTo(System.Management.Automation.PSObject sourceValue, System.Type destinationType) { return default(bool); } @@ -64,7 +64,7 @@ public enum ExecutionPolicyScope { } public sealed class PSAuthorizationManager : System.Management.Automation.AuthorizationManager { public PSAuthorizationManager(string shellId) : base (default(string)) { } - + protected internal override bool ShouldRun(System.Management.Automation.CommandInfo commandInfo, System.Management.Automation.CommandOrigin origin, System.Management.Automation.Host.PSHost host, out System.Exception reason) { reason = default(System.Exception); return default(bool); } } #if PS1XML_SUPPORT @@ -80,7 +80,7 @@ public static class ToStringCodeMethods { namespace Microsoft.PowerShell.Cim { public sealed class CimInstanceAdapter : System.Management.Automation.PSPropertyAdapter { public CimInstanceAdapter() { } - + public override System.Collections.ObjectModel.Collection GetProperties(object baseObject) { return default(System.Collections.ObjectModel.Collection); } public override System.Management.Automation.PSAdaptedProperty GetProperty(object baseObject, string propertyName) { return default(System.Management.Automation.PSAdaptedProperty); } public override string GetPropertyTypeName(System.Management.Automation.PSAdaptedProperty adaptedProperty) { return default(string); } @@ -99,13 +99,13 @@ public enum BehaviorOnNoMatch { } public abstract class CmdletAdapter where TObjectInstance : class { protected CmdletAdapter() { } - + public string ClassName { get { return default(string); } } public string ClassVersion { get { return default(string); } } public System.Management.Automation.PSCmdlet Cmdlet { get { return default(System.Management.Automation.PSCmdlet); } } public System.Version ModuleVersion { get { return default(System.Version); } } public System.Collections.Generic.IDictionary PrivateData { get { return default(System.Collections.Generic.IDictionary); } } - + public virtual void BeginProcessing() { } public virtual void EndProcessing() { } public virtual Microsoft.PowerShell.Cmdletization.QueryBuilder GetQueryBuilder() { return default(Microsoft.PowerShell.Cmdletization.QueryBuilder); } @@ -118,22 +118,22 @@ public virtual void StopProcessing() { } } public sealed class MethodInvocationInfo { public MethodInvocationInfo(string name, System.Collections.Generic.IEnumerable parameters, Microsoft.PowerShell.Cmdletization.MethodParameter returnValue) { } - + public string MethodName { get { return default(string); } } public System.Collections.ObjectModel.KeyedCollection Parameters { get { return default(System.Collections.ObjectModel.KeyedCollection); } } public Microsoft.PowerShell.Cmdletization.MethodParameter ReturnValue { get { return default(Microsoft.PowerShell.Cmdletization.MethodParameter); } } - + } public sealed class MethodParameter { public MethodParameter() { } - + public Microsoft.PowerShell.Cmdletization.MethodParameterBindings Bindings { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(Microsoft.PowerShell.Cmdletization.MethodParameterBindings); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public bool IsValuePresent { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(bool); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public System.Type ParameterType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Type); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string ParameterTypeName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public object Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(object); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } - + } [System.FlagsAttribute] public enum MethodParameterBindings { @@ -143,7 +143,7 @@ public enum MethodParameterBindings { } public abstract class QueryBuilder { protected QueryBuilder() { } - + public virtual void AddQueryOption(string optionName, object optionValue) { } public virtual void ExcludeByProperty(string propertyName, System.Collections.IEnumerable excludedPropertyValues, bool wildcardsEnabled, Microsoft.PowerShell.Cmdletization.BehaviorOnNoMatch behaviorOnNoMatch) { } public virtual void FilterByAssociatedInstance(object associatedInstance, string associationName, string sourceRole, string resultRole, Microsoft.PowerShell.Cmdletization.BehaviorOnNoMatch behaviorOnNoMatch) { } @@ -179,12 +179,12 @@ namespace Microsoft.PowerShell.Commands { [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(Microsoft.PowerShell.Commands.HistoryInfo)})] public class AddHistoryCommand : System.Management.Automation.PSCmdlet { public AddHistoryCommand() { } - + [System.Management.Automation.ParameterAttribute(Position=0, ValueFromPipeline=true)] public System.Management.Automation.PSObject[] InputObject { get { return default(System.Management.Automation.PSObject[]); } set { } } [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter Passthru { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + protected override void BeginProcessing() { } protected override void ProcessRecord() { } } @@ -196,34 +196,34 @@ protected override void ProcessRecord() { } [System.Management.Automation.Provider.CmdletProviderAttribute("Alias", (System.Management.Automation.Provider.ProviderCapabilities)(16))] public sealed class AliasProvider : Microsoft.PowerShell.Commands.SessionStateProviderBase { public const string ProviderName = "Alias"; - + public AliasProvider() { } - + protected override System.Collections.ObjectModel.Collection InitializeDefaultDrives() { return default(System.Collections.ObjectModel.Collection); } protected override object NewItemDynamicParameters(string path, string type, object newItemValue) { return default(object); } protected override object SetItemDynamicParameters(string path, object value) { return default(object); } } public class AliasProviderDynamicParameters { public AliasProviderDynamicParameters() { } - + [System.Management.Automation.ParameterAttribute] public System.Management.Automation.ScopedItemOptions Options { get { return default(System.Management.Automation.ScopedItemOptions); } set { } } - + } #if PREVIEW2 public class AlternateStreamData { public AlternateStreamData() { } - + public string FileName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public long Length { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(long); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Stream { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } - + } #endif [System.Management.Automation.CmdletAttribute("Clear", "History", SupportsShouldProcess=true, DefaultParameterSetName="IDParameter", HelpUri="http://go.microsoft.com/fwlink/?LinkID=135199")] public class ClearHistoryCommand : System.Management.Automation.PSCmdlet { public ClearHistoryCommand() { } - + [System.Management.Automation.ParameterAttribute(ParameterSetName="CommandLineParameter", HelpMessage="Specifies the name of a command in the session history")] [System.Management.Automation.ValidateNotNullOrEmptyAttribute] public string[] CommandLine { get { return default(string[]); } set { } } @@ -235,7 +235,7 @@ public ClearHistoryCommand() { } public int[] Id { get { return default(int[]); } set { } } [System.Management.Automation.ParameterAttribute(Mandatory=false, HelpMessage="Specifies whether new entries to be cleared or the default old ones.")] public System.Management.Automation.SwitchParameter Newest { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + protected override void BeginProcessing() { } protected override void ProcessRecord() { } } @@ -243,7 +243,7 @@ protected override void ProcessRecord() { } [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(System.Management.Automation.Runspaces.PSSession)})] public class ConnectPSSessionCommand : Microsoft.PowerShell.Commands.PSRunspaceCmdlet, System.IDisposable { public ConnectPSSessionCommand() { } - + [System.Management.Automation.ParameterAttribute(ParameterSetName="ConnectionUri")] [System.Management.Automation.ParameterAttribute(ParameterSetName="ConnectionUriGuid")] public System.Management.Automation.SwitchParameter AllowRedirection { get { return default(System.Management.Automation.SwitchParameter); } set { } } @@ -315,7 +315,7 @@ public ConnectPSSessionCommand() { } [System.Management.Automation.ParameterAttribute(ParameterSetName="ComputerName")] [System.Management.Automation.ParameterAttribute(ParameterSetName="ComputerNameGuid")] public System.Management.Automation.SwitchParameter UseSSL { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + protected override void BeginProcessing() { } public void Dispose() { } protected override void EndProcessing() { } @@ -330,23 +330,23 @@ protected ConsoleCmdletsBase() { } [System.Management.Automation.CmdletAttribute("Disable", "PSRemoting", SupportsShouldProcess=true, ConfirmImpact=(System.Management.Automation.ConfirmImpact)(3), HelpUri="http://go.microsoft.com/fwlink/?LinkID=144298")] public sealed class DisablePSRemotingCommand : System.Management.Automation.PSCmdlet { public DisablePSRemotingCommand() { } - + [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter Force { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + protected override void BeginProcessing() { } protected override void EndProcessing() { } } [System.Management.Automation.CmdletAttribute("Disable", "PSSessionConfiguration", SupportsShouldProcess=true, ConfirmImpact=(System.Management.Automation.ConfirmImpact)(3), HelpUri="http://go.microsoft.com/fwlink/?LinkID=144299")] public sealed class DisablePSSessionConfigurationCommand : System.Management.Automation.PSCmdlet { public DisablePSSessionConfigurationCommand() { } - + [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter Force { get { return default(System.Management.Automation.SwitchParameter); } set { } } [System.Management.Automation.ParameterAttribute(Position=0, ValueFromPipeline=true, ValueFromPipelineByPropertyName=true)] [System.Management.Automation.ValidateNotNullOrEmptyAttribute] public string[] Name { get { return default(string[]); } set { } } - + protected override void BeginProcessing() { } protected override void EndProcessing() { } protected override void ProcessRecord() { } @@ -355,7 +355,7 @@ protected override void ProcessRecord() { } [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(System.Management.Automation.Runspaces.PSSession)})] public class DisconnectPSSessionCommand : Microsoft.PowerShell.Commands.PSRunspaceCmdlet, System.IDisposable { public DisconnectPSSessionCommand() { } - + public override string[] ComputerName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string[]); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } [System.Management.Automation.ParameterAttribute(ParameterSetName="Id")] [System.Management.Automation.ParameterAttribute(ParameterSetName="InstanceId")] @@ -376,7 +376,7 @@ public DisconnectPSSessionCommand() { } [System.Management.Automation.ParameterAttribute(ParameterSetName="Name")] [System.Management.Automation.ParameterAttribute(ParameterSetName="Session")] public int ThrottleLimit { get { return default(int); } set { } } - + protected override void BeginProcessing() { } public void Dispose() { } protected override void EndProcessing() { } @@ -386,19 +386,19 @@ protected override void StopProcessing() { } [System.Management.Automation.CmdletAttribute("Enable", "PSRemoting", SupportsShouldProcess=true, ConfirmImpact=(System.Management.Automation.ConfirmImpact)(3), HelpUri="http://go.microsoft.com/fwlink/?LinkID=144300")] public sealed class EnablePSRemotingCommand : System.Management.Automation.PSCmdlet { public EnablePSRemotingCommand() { } - + [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter Force { get { return default(System.Management.Automation.SwitchParameter); } set { } } [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter SkipNetworkProfileCheck { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + protected override void BeginProcessing() { } protected override void EndProcessing() { } } [System.Management.Automation.CmdletAttribute("Enable", "PSSessionConfiguration", SupportsShouldProcess=true, ConfirmImpact=(System.Management.Automation.ConfirmImpact)(3), HelpUri="http://go.microsoft.com/fwlink/?LinkID=144301")] public sealed class EnablePSSessionConfigurationCommand : System.Management.Automation.PSCmdlet { public EnablePSSessionConfigurationCommand() { } - + [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter Force { get { return default(System.Management.Automation.SwitchParameter); } set { } } [System.Management.Automation.ParameterAttribute(Position=0, ValueFromPipeline=true, ValueFromPipelineByPropertyName=true)] @@ -408,7 +408,7 @@ public EnablePSSessionConfigurationCommand() { } public string SecurityDescriptorSddl { get { return default(string); } set { } } [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter SkipNetworkProfileCheck { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + protected override void BeginProcessing() { } protected override void EndProcessing() { } protected override void ProcessRecord() { } @@ -416,7 +416,7 @@ protected override void ProcessRecord() { } [System.Management.Automation.CmdletAttribute("Enter", "PSSession", DefaultParameterSetName="ComputerName", HelpUri="http://go.microsoft.com/fwlink/?LinkID=135210", RemotingCapability=(System.Management.Automation.RemotingCapability)(3))] public class EnterPSSessionCommand : Microsoft.PowerShell.Commands.PSRemotingBaseCmdlet { public EnterPSSessionCommand() { } - + [System.Management.Automation.AliasAttribute(new string[]{ "Cn"})] [System.Management.Automation.ParameterAttribute(Position=0, Mandatory=true, ValueFromPipeline=true, ValueFromPipelineByPropertyName=true, ParameterSetName="ComputerName")] [System.Management.Automation.ValidateNotNullOrEmptyAttribute] @@ -440,7 +440,7 @@ public EnterPSSessionCommand() { } [System.Management.Automation.ValidateNotNullOrEmptyAttribute] public new System.Management.Automation.Runspaces.PSSession Session { get { return default(System.Management.Automation.Runspaces.PSSession); } set { } } public new int ThrottleLimit { get { return default(int); } set { } } - + protected override void EndProcessing() { } protected override void ProcessRecord() { } protected override void StopProcessing() { } @@ -448,22 +448,22 @@ protected override void StopProcessing() { } [System.Management.Automation.Provider.CmdletProviderAttribute("Environment", (System.Management.Automation.Provider.ProviderCapabilities)(16))] public sealed class EnvironmentProvider : Microsoft.PowerShell.Commands.SessionStateProviderBase { public const string ProviderName = "Environment"; - + public EnvironmentProvider() { } - + protected override System.Collections.ObjectModel.Collection InitializeDefaultDrives() { return default(System.Collections.ObjectModel.Collection); } } [System.Management.Automation.CmdletAttribute("Exit", "PSSession", HelpUri="http://go.microsoft.com/fwlink/?LinkID=135212")] public class ExitPSSessionCommand : Microsoft.PowerShell.Commands.PSRemotingCmdlet { public ExitPSSessionCommand() { } - + protected override void ProcessRecord() { } } #if PREVIEW2 [System.Management.Automation.CmdletAttribute("Export", "Console", SupportsShouldProcess=true, HelpUri="http://go.microsoft.com/fwlink/?LinkID=113298")] public sealed class ExportConsoleCommand : Microsoft.PowerShell.Commands.ConsoleCmdletsBase { public ExportConsoleCommand() { } - + [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter Force { get { return default(System.Management.Automation.SwitchParameter); } set { } } [System.Management.Automation.AliasAttribute(new string[]{ "NoOverwrite"})] @@ -472,14 +472,14 @@ public ExportConsoleCommand() { } [System.Management.Automation.AliasAttribute(new string[]{ "PSPath"})] [System.Management.Automation.ParameterAttribute(Position=0, Mandatory=false, ValueFromPipeline=true, ValueFromPipelineByPropertyName=true)] public string Path { get { return default(string); } set { } } - + protected override void ProcessRecord() { } } #endif [System.Management.Automation.CmdletAttribute("Export", "ModuleMember", HelpUri="http://go.microsoft.com/fwlink/?LinkID=141551")] public sealed class ExportModuleMemberCommand : System.Management.Automation.PSCmdlet { public ExportModuleMemberCommand() { } - + [System.Management.Automation.ParameterAttribute(ValueFromPipelineByPropertyName=true)] [System.Management.Automation.ValidateNotNullAttribute] public string[] Alias { get { return default(string[]); } set { } } @@ -492,15 +492,15 @@ public ExportModuleMemberCommand() { } [System.Management.Automation.ParameterAttribute(ValueFromPipelineByPropertyName=true)] [System.Management.Automation.ValidateNotNullAttribute] public string[] Variable { get { return default(string[]); } set { } } - + protected override void ProcessRecord() { } } public class FileSystemClearContentDynamicParameters { public FileSystemClearContentDynamicParameters() { } - + [System.Management.Automation.ParameterAttribute] public string Stream { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } - + } #if PREVIEW2 public enum FileSystemCmdletProviderEncoding { @@ -519,7 +519,7 @@ public enum FileSystemCmdletProviderEncoding { #endif public class FileSystemContentDynamicParametersBase { public FileSystemContentDynamicParametersBase() { } - + #if PREVIEW2 [System.Management.Automation.ParameterAttribute] public Microsoft.PowerShell.Commands.FileSystemCmdletProviderEncoding Encoding { get { return default(Microsoft.PowerShell.Commands.FileSystemCmdletProviderEncoding); } set { } } @@ -529,11 +529,11 @@ public FileSystemContentDynamicParametersBase() { } public string Stream { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public bool UsingByteEncoding { get { return default(bool); } } public bool WasStreamTypeSpecified { get { return default(bool); } } - + } public class FileSystemContentReaderDynamicParameters : Microsoft.PowerShell.Commands.FileSystemContentDynamicParametersBase { public FileSystemContentReaderDynamicParameters() { } - + [System.Management.Automation.ParameterAttribute] public string Delimiter { get { return default(string); } set { } } public bool DelimiterSpecified { get { return default(bool); } } @@ -541,19 +541,19 @@ public FileSystemContentReaderDynamicParameters() { } public System.Management.Automation.SwitchParameter Raw { get { return default(System.Management.Automation.SwitchParameter); } set { } } [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter Wait { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + } public class FileSystemContentWriterDynamicParameters : Microsoft.PowerShell.Commands.FileSystemContentDynamicParametersBase { public FileSystemContentWriterDynamicParameters() { } } public class FileSystemItemProviderDynamicParameters { public FileSystemItemProviderDynamicParameters() { } - + [System.Management.Automation.ParameterAttribute] public System.Nullable NewerThan { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Nullable); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } [System.Management.Automation.ParameterAttribute] public System.Nullable OlderThan { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Nullable); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } - + } [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(bool), typeof(string), typeof(System.DateTime), typeof(System.IO.FileInfo), typeof(System.IO.DirectoryInfo)}, ProviderCmdlet="Get-ItemProperty")] [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(bool), typeof(string), typeof(System.IO.FileInfo), typeof(System.IO.DirectoryInfo)}, ProviderCmdlet="Get-Item")] @@ -568,9 +568,9 @@ public FileSystemItemProviderDynamicParameters() { } [System.Management.Automation.Provider.CmdletProviderAttribute("FileSystem", (System.Management.Automation.Provider.ProviderCapabilities)(52))] public sealed class FileSystemProvider : System.Management.Automation.Provider.NavigationCmdletProvider, System.Management.Automation.Provider.ICmdletProviderSupportsHelp, System.Management.Automation.Provider.IContentCmdletProvider, System.Management.Automation.Provider.IPropertyCmdletProvider, System.Management.Automation.Provider.ISecurityDescriptorCmdletProvider { public const string ProviderName = "FileSystem"; - + public FileSystemProvider() { } - + public void ClearContent(string path) { } public object ClearContentDynamicParameters(string path) { return default(object); } public void ClearProperty(string path, System.Collections.ObjectModel.Collection propertiesToClear) { } @@ -618,24 +618,24 @@ public void SetSecurityDescriptor(string path, System.Security.AccessControl.Obj } public class FileSystemProviderGetItemDynamicParameters { public FileSystemProviderGetItemDynamicParameters() { } - + [System.Management.Automation.ParameterAttribute] [System.Management.Automation.ValidateNotNullOrEmptyAttribute] public string[] Stream { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string[]); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } - + } public class FileSystemProviderRemoveItemDynamicParameters { public FileSystemProviderRemoveItemDynamicParameters() { } - + [System.Management.Automation.ParameterAttribute] [System.Management.Automation.ValidateNotNullOrEmptyAttribute] public string[] Stream { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string[]); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } - + } [System.Management.Automation.CmdletAttribute("ForEach", "Object", SupportsShouldProcess=true, DefaultParameterSetName="ScriptBlockSet", HelpUri="http://go.microsoft.com/fwlink/?LinkID=113300", RemotingCapability=(System.Management.Automation.RemotingCapability)(0))] public sealed class ForEachObjectCommand : System.Management.Automation.PSCmdlet { public ForEachObjectCommand() { } - + [System.Management.Automation.AliasAttribute(new string[]{ "Args"})] [System.Management.Automation.ParameterAttribute(ParameterSetName="PropertyAndMethodSet", ValueFromRemainingArguments=true)] public object[] ArgumentList { get { return default(object[]); } set { } } @@ -657,7 +657,7 @@ public ForEachObjectCommand() { } [System.Management.Automation.AllowNullAttribute] [System.Management.Automation.ParameterAttribute(ParameterSetName="ScriptBlockSet", ValueFromRemainingArguments=true)] public System.Management.Automation.ScriptBlock[] RemainingScripts { get { return default(System.Management.Automation.ScriptBlock[]); } set { } } - + protected override void BeginProcessing() { } protected override void EndProcessing() { } protected override void ProcessRecord() { } @@ -675,19 +675,19 @@ public FormatDefaultCommand() { } [System.Management.Automation.Provider.CmdletProviderAttribute("Function", (System.Management.Automation.Provider.ProviderCapabilities)(16))] public sealed class FunctionProvider : Microsoft.PowerShell.Commands.SessionStateProviderBase { public const string ProviderName = "Function"; - + public FunctionProvider() { } - + protected override System.Collections.ObjectModel.Collection InitializeDefaultDrives() { return default(System.Collections.ObjectModel.Collection); } protected override object NewItemDynamicParameters(string path, string type, object newItemValue) { return default(object); } protected override object SetItemDynamicParameters(string path, object value) { return default(object); } } public class FunctionProviderDynamicParameters { public FunctionProviderDynamicParameters() { } - + [System.Management.Automation.ParameterAttribute] public System.Management.Automation.ScopedItemOptions Options { get { return default(System.Management.Automation.ScopedItemOptions); } set { } } - + } [System.Management.Automation.CmdletAttribute("Get", "Command", DefaultParameterSetName="CmdletSet", HelpUri="http://go.microsoft.com/fwlink/?LinkID=113309")] [System.Management.Automation.OutputTypeAttribute(new System.Type[] @@ -707,7 +707,7 @@ public FunctionProviderDynamicParameters() { } })] public sealed class GetCommandCommand : System.Management.Automation.PSCmdlet { public GetCommandCommand() { } - + [System.Management.Automation.ParameterAttribute(ValueFromPipelineByPropertyName=true)] public System.Management.Automation.SwitchParameter All { get { return default(System.Management.Automation.SwitchParameter); } set { } } [System.Management.Automation.AliasAttribute(new string[]{ "Args"})] @@ -740,7 +740,7 @@ public GetCommandCommand() { } public int TotalCount { get { return default(int); } set { } } [System.Management.Automation.ParameterAttribute(ValueFromPipelineByPropertyName=true, ParameterSetName="CmdletSet")] public string[] Verb { get { return default(string[]); } set { } } - + protected override void EndProcessing() { } protected override void ProcessRecord() { } } @@ -750,7 +750,7 @@ public static class GetHelpCodeMethods { [System.Management.Automation.CmdletAttribute("Get", "Help", DefaultParameterSetName="AllUsersView", HelpUri="http://go.microsoft.com/fwlink/?LinkID=113316")] public sealed class GetHelpCommand : System.Management.Automation.PSCmdlet { public GetHelpCommand() { } - + [System.Management.Automation.ParameterAttribute] [System.Management.Automation.ValidateSetAttribute(new string[]{ "Alias", "Cmdlet", "Provider", "General", "FAQ", "Glossary", "HelpFile", "ScriptCommand", "Function", "Filter", "ExternalScript", "All", "DefaultHelp", "Workflow"}, IgnoreCase=true)] public string[] Category { get { return default(string[]); } set { } } @@ -776,7 +776,7 @@ public System.Management.Automation.SwitchParameter Full { set { } } public string[] Role { get { return default(string[]); } set { } } [System.Management.Automation.ParameterAttribute(ParameterSetName="ShowWindow", Mandatory=true)] public System.Management.Automation.SwitchParameter ShowWindow { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + protected override void BeginProcessing() { } protected override void ProcessRecord() { } } @@ -784,21 +784,21 @@ protected override void ProcessRecord() { } [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(Microsoft.PowerShell.Commands.HistoryInfo)})] public class GetHistoryCommand : System.Management.Automation.PSCmdlet { public GetHistoryCommand() { } - + [System.Management.Automation.ParameterAttribute(Position=1)] [System.Management.Automation.ValidateRangeAttribute(0, 32767)] public int Count { get { return default(int); } set { } } [System.Management.Automation.ParameterAttribute(Position=0, ValueFromPipeline=true)] [System.Management.Automation.ValidateRangeAttribute((long)1, (long)9223372036854775807)] public long[] Id { get { return default(long[]); } set { } } - + protected override void ProcessRecord() { } } [System.Management.Automation.CmdletAttribute("Get", "Job", DefaultParameterSetName="SessionIdParameterSet", HelpUri="http://go.microsoft.com/fwlink/?LinkID=113328")] [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(System.Management.Automation.Job)})] public class GetJobCommand : Microsoft.PowerShell.Commands.JobCmdletBase { public GetJobCommand() { } - + [System.Management.Automation.ParameterAttribute(ParameterSetName="CommandParameterSet")] [System.Management.Automation.ParameterAttribute(ParameterSetName="InstanceIdParameterSet")] [System.Management.Automation.ParameterAttribute(ParameterSetName="NameParameterSet")] @@ -838,7 +838,7 @@ public GetJobCommand() { } [System.Management.Automation.ParameterAttribute(ParameterSetName="SessionIdParameterSet")] [System.Management.Automation.ParameterAttribute(ParameterSetName="StateParameterSet")] public int Newest { get { return default(int); } set { } } - + protected System.Collections.Generic.List FindJobs() { return default(System.Collections.Generic.List); } protected override void ProcessRecord() { } } @@ -846,7 +846,7 @@ protected override void ProcessRecord() { } [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(System.Management.Automation.PSModuleInfo)})] public sealed class GetModuleCommand : Microsoft.PowerShell.Commands.ModuleCmdletBase, System.IDisposable { public GetModuleCommand() { } - + [System.Management.Automation.ParameterAttribute(ParameterSetName="Available")] [System.Management.Automation.ParameterAttribute(ParameterSetName="Loaded")] public System.Management.Automation.SwitchParameter All { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.SwitchParameter); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } @@ -877,7 +877,7 @@ public GetModuleCommand() { } [System.Management.Automation.ParameterAttribute(ParameterSetName="CimSession")] [System.Management.Automation.ParameterAttribute(ParameterSetName="PsSession")] public System.Management.Automation.SwitchParameter Refresh { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.SwitchParameter); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } - + public void Dispose() { } protected override void ProcessRecord() { } protected override void StopProcessing() { } @@ -886,7 +886,7 @@ protected override void StopProcessing() { } [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(System.Management.Automation.Runspaces.PSSession)})] public class GetPSSessionCommand : Microsoft.PowerShell.Commands.PSRunspaceCmdlet, System.IDisposable { public GetPSSessionCommand() { } - + [System.Management.Automation.ParameterAttribute(ParameterSetName="ConnectionUri")] [System.Management.Automation.ParameterAttribute(ParameterSetName="ConnectionUriInstanceId")] public System.Management.Automation.SwitchParameter AllowRedirection { get { return default(System.Management.Automation.SwitchParameter); } set { } } @@ -956,7 +956,7 @@ public GetPSSessionCommand() { } [System.Management.Automation.ParameterAttribute(ParameterSetName="ComputerInstanceId")] [System.Management.Automation.ParameterAttribute(ParameterSetName="ComputerName")] public System.Management.Automation.SwitchParameter UseSSL { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + public void Dispose() { } protected override void EndProcessing() { } protected override void ProcessRecord() { } @@ -966,10 +966,10 @@ protected override void StopProcessing() { } [System.Management.Automation.OutputTypeAttribute(new string[]{ "Microsoft.PowerShell.Commands.PSSessionConfigurationCommands#PSSessionConfiguration"})] public sealed class GetPSSessionConfigurationCommand : System.Management.Automation.PSCmdlet { public GetPSSessionConfigurationCommand() { } - + [System.Management.Automation.ParameterAttribute(Position=0, Mandatory=false)] public string[] Name { get { return default(string[]); } set { } } - + protected override void BeginProcessing() { } protected override void ProcessRecord() { } } @@ -977,7 +977,7 @@ public class HelpCategoryInvalidException : System.ArgumentException, System.Man public HelpCategoryInvalidException() { } public HelpCategoryInvalidException(string helpCategory) { } public HelpCategoryInvalidException(string helpCategory, System.Exception innerException) { } - + public System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } public string HelpCategory { get { return default(string); } } public override string Message { get { return default(string); } } @@ -987,7 +987,7 @@ public class HelpNotFoundException : System.Exception, System.Management.Automat public HelpNotFoundException() { } public HelpNotFoundException(string helpTopic) { } public HelpNotFoundException(string helpTopic, System.Exception innerException) { } - + public System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } public string HelpTopic { get { return default(string); } } public override string Message { get { return default(string); } } @@ -999,7 +999,7 @@ internal HistoryInfo() { } public System.Management.Automation.Runspaces.PipelineState ExecutionStatus { get { return default(System.Management.Automation.Runspaces.PipelineState); } } public long Id { get { return default(long); } } public System.DateTime StartExecutionTime { get { return default(System.DateTime); } } - + public Microsoft.PowerShell.Commands.HistoryInfo Clone() { return default(Microsoft.PowerShell.Commands.HistoryInfo); } public override string ToString() { return default(string); } } @@ -1007,7 +1007,7 @@ internal HistoryInfo() { } [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(System.Management.Automation.PSModuleInfo)})] public sealed class ImportModuleCommand : Microsoft.PowerShell.Commands.ModuleCmdletBase, System.IDisposable { public ImportModuleCommand() { } - + [System.Management.Automation.ParameterAttribute] [System.Management.Automation.ValidateNotNullAttribute] public string[] Alias { get { return default(string[]); } set { } } @@ -1073,7 +1073,7 @@ public ImportModuleCommand() { } [System.Management.Automation.ParameterAttribute] [System.Management.Automation.ValidateNotNullAttribute] public string[] Variable { get { return default(string[]); } set { } } - + protected override void BeginProcessing() { } public void Dispose() { } protected override void ProcessRecord() { } @@ -1082,7 +1082,7 @@ protected override void StopProcessing() { } [System.Management.Automation.CmdletAttribute("Invoke", "Command", DefaultParameterSetName="InProcess", HelpUri="http://go.microsoft.com/fwlink/?LinkID=135225", RemotingCapability=(System.Management.Automation.RemotingCapability)(3))] public class InvokeCommandCommand : Microsoft.PowerShell.Commands.PSExecutionCmdlet, System.IDisposable { public InvokeCommandCommand() { } - + [System.Management.Automation.ParameterAttribute(ParameterSetName="FilePathUri")] [System.Management.Automation.ParameterAttribute(ParameterSetName="Uri")] public override System.Management.Automation.SwitchParameter AllowRedirection { get { return default(System.Management.Automation.SwitchParameter); } set { } } @@ -1190,7 +1190,7 @@ public InvokeCommandCommand() { } [System.Management.Automation.ParameterAttribute(ParameterSetName="ComputerName")] [System.Management.Automation.ParameterAttribute(ParameterSetName="FilePathComputerName")] public override System.Management.Automation.SwitchParameter UseSSL { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + protected override void BeginProcessing() { } public void Dispose() { } protected override void EndProcessing() { } @@ -1200,15 +1200,15 @@ protected override void StopProcessing() { } [System.Management.Automation.CmdletAttribute("Invoke", "History", SupportsShouldProcess=true, HelpUri="http://go.microsoft.com/fwlink/?LinkID=113344")] public class InvokeHistoryCommand : System.Management.Automation.PSCmdlet { public InvokeHistoryCommand() { } - + [System.Management.Automation.ParameterAttribute(Position=0, ValueFromPipelineByPropertyName=true)] public string Id { get { return default(string); } set { } } - + protected override void EndProcessing() { } } public class JobCmdletBase : Microsoft.PowerShell.Commands.PSRemotingCmdlet { public JobCmdletBase() { } - + [System.Management.Automation.ParameterAttribute(ValueFromPipelineByPropertyName=true, ParameterSetName="CommandParameterSet")] [System.Management.Automation.ValidateNotNullOrEmptyAttribute] public virtual string[] Command { get { return default(string[]); } set { } } @@ -1226,19 +1226,19 @@ public JobCmdletBase() { } public string[] Name { get { return default(string[]); } set { } } [System.Management.Automation.ParameterAttribute(Mandatory=true, Position=0, ValueFromPipelineByPropertyName=true, ParameterSetName="StateParameterSet")] public virtual System.Management.Automation.JobState State { get { return default(System.Management.Automation.JobState); } set { } } - + protected override void BeginProcessing() { } } public class ModuleCmdletBase : System.Management.Automation.PSCmdlet { public ModuleCmdletBase() { } - + protected bool AddToAppDomainLevelCache { get { return default(bool); } set { } } protected object[] BaseArgumentList { get { return default(object[]); } set { } } protected bool BaseDisableNameChecking { get { return default(bool); } set { } } - + protected internal void ImportModuleMembers(System.Management.Automation.PSModuleInfo sourceModule, string prefix) { } protected internal void ImportModuleMembers(System.Management.Automation.PSModuleInfo sourceModule, string prefix, Microsoft.PowerShell.Commands.ModuleCmdletBase.ImportModuleOptions options) { } - + // Nested Types [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] protected internal partial struct ImportModuleOptions { @@ -1247,17 +1247,17 @@ protected internal partial struct ImportModuleOptions { public class ModuleSpecification { public ModuleSpecification(System.Collections.Hashtable moduleSpecification) { } public ModuleSpecification(string moduleName) { } - + public System.Nullable Guid { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Nullable); } } public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } public System.Version Version { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Version); } } - + } [System.Management.Automation.CmdletAttribute("New", "Module", DefaultParameterSetName="ScriptBlock", HelpUri="http://go.microsoft.com/fwlink/?LinkID=141554")] [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(System.Management.Automation.PSModuleInfo)})] public sealed class NewModuleCommand : Microsoft.PowerShell.Commands.ModuleCmdletBase { public NewModuleCommand() { } - + [System.Management.Automation.AliasAttribute(new string[]{ "Args"})] [System.Management.Automation.ParameterAttribute(ValueFromRemainingArguments=true)] public object[] ArgumentList { get { return default(object[]); } set { } } @@ -1277,14 +1277,14 @@ public NewModuleCommand() { } [System.Management.Automation.ParameterAttribute(ParameterSetName="ScriptBlock", Mandatory=true, Position=0)] [System.Management.Automation.ValidateNotNullAttribute] public System.Management.Automation.ScriptBlock ScriptBlock { get { return default(System.Management.Automation.ScriptBlock); } set { } } - + protected override void EndProcessing() { } } [System.Management.Automation.CmdletAttribute("New", "ModuleManifest", SupportsShouldProcess=true, HelpUri="http://go.microsoft.com/fwlink/?LinkID=141555")] [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(string)})] public sealed class NewModuleManifestCommand : System.Management.Automation.PSCmdlet { public NewModuleManifestCommand() { } - + [System.Management.Automation.AllowEmptyCollectionAttribute] [System.Management.Automation.ParameterAttribute] public string[] AliasesToExport { get { return default(string[]); } set { } } @@ -1368,7 +1368,7 @@ public NewModuleManifestCommand() { } [System.Management.Automation.AllowEmptyCollectionAttribute] [System.Management.Automation.ParameterAttribute] public string[] VariablesToExport { get { return default(string[]); } set { } } - + protected override void BeginProcessing() { } protected override void ProcessRecord() { } } @@ -1376,7 +1376,7 @@ protected override void ProcessRecord() { } [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(System.Management.Automation.Runspaces.PSSession)})] public class NewPSSessionCommand : Microsoft.PowerShell.Commands.PSRemotingBaseCmdlet, System.IDisposable { public NewPSSessionCommand() { } - + [System.Management.Automation.AliasAttribute(new string[]{ "Cn"})] [System.Management.Automation.ParameterAttribute(Position=0, ValueFromPipeline=true, ValueFromPipelineByPropertyName=true, ParameterSetName="ComputerName")] [System.Management.Automation.ValidateNotNullOrEmptyAttribute] @@ -1392,7 +1392,7 @@ public NewPSSessionCommand() { } [System.Management.Automation.ParameterAttribute(Position=0, ValueFromPipelineByPropertyName=true, ValueFromPipeline=true, ParameterSetName="Session")] [System.Management.Automation.ValidateNotNullOrEmptyAttribute] public override System.Management.Automation.Runspaces.PSSession[] Session { get { return default(System.Management.Automation.Runspaces.PSSession[]); } set { } } - + protected override void BeginProcessing() { } public void Dispose() { } protected void Dispose(bool disposing) { } @@ -1403,7 +1403,7 @@ protected override void StopProcessing() { } [System.Management.Automation.CmdletAttribute("New", "PSSessionConfigurationFile", HelpUri="http://go.microsoft.com/fwlink/?LinkID=217036")] public class NewPSSessionConfigurationFileCommand : System.Management.Automation.PSCmdlet { public NewPSSessionConfigurationFileCommand() { } - + [System.Management.Automation.ParameterAttribute] public System.Collections.Hashtable[] AliasDefinitions { get { return default(System.Collections.Hashtable[]); } set { } } [System.Management.Automation.ParameterAttribute] @@ -1454,14 +1454,14 @@ public NewPSSessionConfigurationFileCommand() { } public string[] VisibleFunctions { get { return default(string[]); } set { } } [System.Management.Automation.ParameterAttribute] public string[] VisibleProviders { get { return default(string[]); } set { } } - + protected override void ProcessRecord() { } } [System.Management.Automation.CmdletAttribute("New", "PSSessionOption", HelpUri="http://go.microsoft.com/fwlink/?LinkID=144305", RemotingCapability=(System.Management.Automation.RemotingCapability)(0))] [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(System.Management.Automation.Remoting.PSSessionOption)})] public sealed class NewPSSessionOptionCommand : System.Management.Automation.PSCmdlet { public NewPSSessionOptionCommand() { } - + [System.Management.Automation.ParameterAttribute] [System.Management.Automation.ValidateNotNullAttribute] public System.Management.Automation.PSPrimitiveDictionary ApplicationArguments { get { return default(System.Management.Automation.PSPrimitiveDictionary); } set { } } @@ -1520,14 +1520,14 @@ public NewPSSessionOptionCommand() { } public System.Globalization.CultureInfo UICulture { get { return default(System.Globalization.CultureInfo); } set { } } [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter UseUTF16 { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + protected override void BeginProcessing() { } } [System.Management.Automation.CmdletAttribute("New", "PSTransportOption", HelpUri="http://go.microsoft.com/fwlink/?LinkID=210608", RemotingCapability=(System.Management.Automation.RemotingCapability)(0))] [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(Microsoft.PowerShell.Commands.WSManConfigurationOption)})] public sealed class NewPSTransportOptionCommand : System.Management.Automation.PSCmdlet { public NewPSTransportOptionCommand() { } - + [System.Management.Automation.ParameterAttribute(ValueFromPipelineByPropertyName=true)] [System.Management.Automation.ValidateRangeAttribute(60, 2147483)] public System.Nullable IdleTimeoutSec { get { return default(System.Nullable); } set { } } @@ -1557,12 +1557,12 @@ public NewPSTransportOptionCommand() { } [System.Management.Automation.ParameterAttribute(ValueFromPipelineByPropertyName=true)] [System.Management.Automation.ValidateRangeAttribute(0, 1209600)] public System.Nullable ProcessIdleTimeoutSec { get { return default(System.Nullable); } set { } } - + protected override void ProcessRecord() { } } public abstract class ObjectEventRegistrationBase : System.Management.Automation.PSCmdlet { protected ObjectEventRegistrationBase() { } - + [System.Management.Automation.ParameterAttribute(Position=101)] public System.Management.Automation.ScriptBlock Action { get { return default(System.Management.Automation.ScriptBlock); } set { } } [System.Management.Automation.ParameterAttribute] @@ -1576,7 +1576,7 @@ protected ObjectEventRegistrationBase() { } public string SourceIdentifier { get { return default(string); } set { } } [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter SupportEvent { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + protected override void BeginProcessing() { } protected override void EndProcessing() { } protected abstract object GetSourceObject(); @@ -1590,34 +1590,34 @@ public enum OpenMode { [System.Management.Automation.CmdletAttribute("Out", "Default", HelpUri="http://go.microsoft.com/fwlink/?LinkID=113362", RemotingCapability=(System.Management.Automation.RemotingCapability)(0))] public class OutDefaultCommand : Microsoft.PowerShell.Commands.Internal.Format.FrontEndCommandBase { public OutDefaultCommand() { } - + protected override void BeginProcessing() { } } [System.Management.Automation.CmdletAttribute("Out", "Host", HelpUri="http://go.microsoft.com/fwlink/?LinkID=113365", RemotingCapability=(System.Management.Automation.RemotingCapability)(0))] public class OutHostCommand : Microsoft.PowerShell.Commands.Internal.Format.FrontEndCommandBase { public OutHostCommand() { } - + [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter Paging { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + protected override void BeginProcessing() { } } [System.Management.Automation.CmdletAttribute("Out", "LineOutput")] public class OutLineOutputCommand : Microsoft.PowerShell.Commands.Internal.Format.FrontEndCommandBase { public OutLineOutputCommand() { } - + [System.Management.Automation.ParameterAttribute(Mandatory=true, Position=0)] public object LineOutput { get { return default(object); } set { } } - + protected override void BeginProcessing() { } } [System.Management.Automation.CmdletAttribute("Out", "Null", SupportsShouldProcess=false, HelpUri="http://go.microsoft.com/fwlink/?LinkID=113366", RemotingCapability=(System.Management.Automation.RemotingCapability)(0))] public class OutNullCommand : System.Management.Automation.PSCmdlet { public OutNullCommand() { } - + [System.Management.Automation.ParameterAttribute(ValueFromPipeline=true)] public System.Management.Automation.PSObject InputObject { get { return default(System.Management.Automation.PSObject); } set { } } - + protected override void ProcessRecord() { } } public enum OutTarget { @@ -1630,9 +1630,9 @@ public abstract class PSExecutionCmdlet : Microsoft.PowerShell.Commands.PSRemoti protected const string FilePathSessionParameterSet = "FilePathRunspace"; protected const string FilePathUriParameterSet = "FilePathUri"; protected const string LiteralFilePathComputerNameParameterSet = "LiteralFilePathComputerName"; - + protected PSExecutionCmdlet() { } - + [System.Management.Automation.AliasAttribute(new string[]{ "Args"})] [System.Management.Automation.ParameterAttribute] public virtual object[] ArgumentList { get { return default(object[]); } set { } } @@ -1648,7 +1648,7 @@ protected PSExecutionCmdlet() { } protected bool InvokeAndDisconnect { get { return default(bool); } set { } } protected bool IsLiteralPath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(bool); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public virtual System.Management.Automation.ScriptBlock ScriptBlock { get { return default(System.Management.Automation.ScriptBlock); } set { } } - + protected override void BeginProcessing() { } protected void CloseAllInputStreams() { } protected virtual void CreateHelpersForSpecifiedComputerNames() { } @@ -1658,9 +1658,9 @@ protected void CreateHelpersForSpecifiedUris() { } } public abstract class PSRemotingBaseCmdlet : Microsoft.PowerShell.Commands.PSRemotingCmdlet { protected const string UriParameterSet = "Uri"; - + protected PSRemotingBaseCmdlet() { } - + [System.Management.Automation.ParameterAttribute(ParameterSetName="Uri")] public virtual System.Management.Automation.SwitchParameter AllowRedirection { get { return default(System.Management.Automation.SwitchParameter); } set { } } [System.Management.Automation.ParameterAttribute(ValueFromPipelineByPropertyName=true, ParameterSetName="ComputerName")] @@ -1702,7 +1702,7 @@ protected PSRemotingBaseCmdlet() { } public virtual int ThrottleLimit { get { return default(int); } set { } } [System.Management.Automation.ParameterAttribute(ParameterSetName="ComputerName")] public virtual System.Management.Automation.SwitchParameter UseSSL { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + protected override void BeginProcessing() { } protected void ValidateComputerName(string[] computerNames) { } protected void ValidateRemoteRunspacesSpecified() { } @@ -1712,9 +1712,9 @@ public abstract class PSRemotingCmdlet : System.Management.Automation.PSCmdlet { protected const string DefaultPowerShellRemoteShellAppName = "WSMan"; protected const string DefaultPowerShellRemoteShellName = "http://schemas.microsoft.com/powershell/Microsoft.PowerShell"; protected const string SessionParameterSet = "Session"; - + protected PSRemotingCmdlet() { } - + protected override void BeginProcessing() { } protected string ResolveAppName(string appName) { return default(string); } protected string ResolveComputerName(string computerName) { return default(string); } @@ -1725,9 +1725,9 @@ public abstract class PSRunspaceCmdlet : Microsoft.PowerShell.Commands.PSRemotin protected const string IdParameterSet = "Id"; protected const string InstanceIdParameterSet = "InstanceId"; protected const string NameParameterSet = "Name"; - + protected PSRunspaceCmdlet() { } - + [System.Management.Automation.AliasAttribute(new string[]{ "Cn"})] [System.Management.Automation.ParameterAttribute(Position=0, Mandatory=true, ValueFromPipelineByPropertyName=true, ParameterSetName="ComputerName")] [System.Management.Automation.ValidateNotNullOrEmptyAttribute] @@ -1741,7 +1741,7 @@ protected PSRunspaceCmdlet() { } [System.Management.Automation.ParameterAttribute(Mandatory=true, ValueFromPipelineByPropertyName=true, ParameterSetName="Name")] [System.Management.Automation.ValidateNotNullOrEmptyAttribute] public virtual string[] Name { get { return default(string[]); } set { } } - + protected System.Collections.Generic.Dictionary GetMatchingRunspaces(bool writeobject, bool writeErrorOnNoMatch) { return default(System.Collections.Generic.Dictionary); } protected System.Collections.Generic.Dictionary GetMatchingRunspacesByName(bool writeobject, bool writeErrorOnNoMatch) { return default(System.Collections.Generic.Dictionary); } protected System.Collections.Generic.Dictionary GetMatchingRunspacesByRunspaceId(bool writeobject, bool writeErrorOnNoMatch) { return default(System.Collections.Generic.Dictionary); } @@ -1805,14 +1805,14 @@ internal PSSessionConfigurationCommandBase() { } public System.Management.Automation.PSTransportOption TransportOption { get { return default(System.Management.Automation.PSTransportOption); } set { } } [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter UseSharedProcess { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + } [System.Management.Automation.CmdletAttribute("Receive", "Job", DefaultParameterSetName="Location", HelpUri="http://go.microsoft.com/fwlink/?LinkID=113372", RemotingCapability=(System.Management.Automation.RemotingCapability)(2))] public class ReceiveJobCommand : Microsoft.PowerShell.Commands.JobCmdletBase, System.IDisposable { protected const string LocationParameterSet = "Location"; - + public ReceiveJobCommand() { } - + [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter AutoRemoveJob { get { return default(System.Management.Automation.SwitchParameter); } set { } } public override string[] Command { get { return default(string[]); } } @@ -1844,7 +1844,7 @@ public ReceiveJobCommand() { } public System.Management.Automation.SwitchParameter WriteEvents { get { return default(System.Management.Automation.SwitchParameter); } set { } } [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter WriteJobInResults { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + protected override void BeginProcessing() { } public void Dispose() { } protected void Dispose(bool disposing) { } @@ -1855,7 +1855,7 @@ protected override void StopProcessing() { } [System.Management.Automation.CmdletAttribute("Receive", "PSSession", SupportsShouldProcess=true, DefaultParameterSetName="Session", HelpUri="http://go.microsoft.com/fwlink/?LinkID=217037", RemotingCapability=(System.Management.Automation.RemotingCapability)(3))] public class ReceivePSSessionCommand : Microsoft.PowerShell.Commands.PSRemotingCmdlet { public ReceivePSSessionCommand() { } - + [System.Management.Automation.ParameterAttribute(ParameterSetName="ConnectionUriInstanceId")] [System.Management.Automation.ParameterAttribute(ParameterSetName="ConnectionUriSessionName")] public System.Management.Automation.SwitchParameter AllowRedirection { get { return default(System.Management.Automation.SwitchParameter); } set { } } @@ -1939,14 +1939,14 @@ public ReceivePSSessionCommand() { } [System.Management.Automation.ParameterAttribute(ParameterSetName="ComputerInstanceId")] [System.Management.Automation.ParameterAttribute(ParameterSetName="ComputerSessionName")] public System.Management.Automation.SwitchParameter UseSSL { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + protected override void ProcessRecord() { } protected override void StopProcessing() { } } [System.Management.Automation.CmdletAttribute("Register", "PSSessionConfiguration", DefaultParameterSetName="NameParameterSet", SupportsShouldProcess=true, ConfirmImpact=(System.Management.Automation.ConfirmImpact)(3), HelpUri="http://go.microsoft.com/fwlink/?LinkID=144306")] public sealed class RegisterPSSessionConfigurationCommand : Microsoft.PowerShell.Commands.PSSessionConfigurationCommandBase { public RegisterPSSessionConfigurationCommand() { } - + [System.Management.Automation.AliasAttribute(new string[]{ "PA"})] [System.Management.Automation.ParameterAttribute] [System.Management.Automation.ValidateNotNullOrEmptyAttribute] @@ -1954,7 +1954,7 @@ public RegisterPSSessionConfigurationCommand() { } public string ProcessorArchitecture { get { return default(string); } set { } } [System.Management.Automation.ParameterAttribute(ParameterSetName="NameParameterSet")] public System.Management.Automation.Runspaces.PSSessionType SessionType { get { return default(System.Management.Automation.Runspaces.PSSessionType); } set { } } - + protected override void BeginProcessing() { } protected override void EndProcessing() { } protected override void ProcessRecord() { } @@ -1971,9 +1971,9 @@ protected override void ProcessRecord() { } [System.Management.Automation.Provider.CmdletProviderAttribute("Registry", (System.Management.Automation.Provider.ProviderCapabilities)(80))] public sealed class RegistryProvider : System.Management.Automation.Provider.NavigationCmdletProvider, System.Management.Automation.Provider.IDynamicPropertyCmdletProvider, System.Management.Automation.Provider.IPropertyCmdletProvider, System.Management.Automation.Provider.ISecurityDescriptorCmdletProvider { public const string ProviderName = "Registry"; - + public RegistryProvider() { } - + protected override void ClearItem(string path) { } public void ClearProperty(string path, System.Collections.ObjectModel.Collection propertyToClear) { } public object ClearPropertyDynamicParameters(string path, System.Collections.ObjectModel.Collection propertyToClear) { return default(object); } @@ -2016,17 +2016,17 @@ public void SetSecurityDescriptor(string path, System.Security.AccessControl.Obj } public class RegistryProviderSetItemDynamicParameter { public RegistryProviderSetItemDynamicParameter() { } - + [System.Management.Automation.ParameterAttribute(ValueFromPipelineByPropertyName=true)] public Microsoft.Win32.RegistryValueKind Type { get { return default(Microsoft.Win32.RegistryValueKind); } set { } } - + } #endif [System.Management.Automation.CmdletAttribute("Remove", "Job", SupportsShouldProcess=true, DefaultParameterSetName="SessionIdParameterSet", HelpUri="http://go.microsoft.com/fwlink/?LinkID=113377")] [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(System.Management.Automation.Job)}, ParameterSetName=new string[]{ "JobParameterSet"})] public class RemoveJobCommand : Microsoft.PowerShell.Commands.JobCmdletBase, System.IDisposable { public RemoveJobCommand() { } - + [System.Management.Automation.AliasAttribute(new string[]{ "F"})] [System.Management.Automation.ParameterAttribute(ParameterSetName="FilterParameterSet")] [System.Management.Automation.ParameterAttribute(ParameterSetName="InstanceIdParameterSet")] @@ -2037,7 +2037,7 @@ public RemoveJobCommand() { } [System.Management.Automation.ParameterAttribute(Mandatory=true, Position=0, ValueFromPipeline=true, ValueFromPipelineByPropertyName=true, ParameterSetName="JobParameterSet")] [System.Management.Automation.ValidateNotNullOrEmptyAttribute] public System.Management.Automation.Job[] Job { get { return default(System.Management.Automation.Job[]); } set { } } - + public void Dispose() { } protected void Dispose(bool disposing) { } protected override void EndProcessing() { } @@ -2047,38 +2047,38 @@ protected override void StopProcessing() { } [System.Management.Automation.CmdletAttribute("Remove", "Module", SupportsShouldProcess=true, HelpUri="http://go.microsoft.com/fwlink/?LinkID=141556")] public sealed class RemoveModuleCommand : Microsoft.PowerShell.Commands.ModuleCmdletBase { public RemoveModuleCommand() { } - + [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter Force { get { return default(System.Management.Automation.SwitchParameter); } set { } } [System.Management.Automation.ParameterAttribute(Mandatory=true, ParameterSetName="ModuleInfo", ValueFromPipeline=true, Position=0)] public System.Management.Automation.PSModuleInfo[] ModuleInfo { get { return default(System.Management.Automation.PSModuleInfo[]); } set { } } [System.Management.Automation.ParameterAttribute(Mandatory=true, ParameterSetName="name", ValueFromPipeline=true, Position=0)] public string[] Name { get { return default(string[]); } set { } } - + protected override void EndProcessing() { } protected override void ProcessRecord() { } } [System.Management.Automation.CmdletAttribute("Remove", "PSSession", SupportsShouldProcess=true, DefaultParameterSetName="Id", HelpUri="http://go.microsoft.com/fwlink/?LinkID=135250", RemotingCapability=(System.Management.Automation.RemotingCapability)(3))] public class RemovePSSessionCommand : Microsoft.PowerShell.Commands.PSRunspaceCmdlet { public RemovePSSessionCommand() { } - + [System.Management.Automation.ParameterAttribute(Mandatory=true, Position=0, ValueFromPipeline=true, ValueFromPipelineByPropertyName=true, ParameterSetName="Session")] public System.Management.Automation.Runspaces.PSSession[] Session { get { return default(System.Management.Automation.Runspaces.PSSession[]); } set { } } - + protected override void ProcessRecord() { } } [System.Management.Automation.CmdletAttribute("Resume", "Job", SupportsShouldProcess=true, DefaultParameterSetName="SessionIdParameterSet", HelpUri="http://go.microsoft.com/fwlink/?LinkID=210611")] [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(System.Management.Automation.Job)})] public class ResumeJobCommand : Microsoft.PowerShell.Commands.JobCmdletBase, System.IDisposable { public ResumeJobCommand() { } - + public override string[] Command { get { return default(string[]); } } [System.Management.Automation.ParameterAttribute(Mandatory=true, Position=0, ValueFromPipeline=true, ValueFromPipelineByPropertyName=true, ParameterSetName="JobParameterSet")] [System.Management.Automation.ValidateNotNullOrEmptyAttribute] public System.Management.Automation.Job[] Job { get { return default(System.Management.Automation.Job[]); } set { } } [System.Management.Automation.ParameterAttribute(ParameterSetName="__AllParameterSets")] public System.Management.Automation.SwitchParameter Wait { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.SwitchParameter); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } - + public void Dispose() { } protected void Dispose(bool disposing) { } protected override void EndProcessing() { } @@ -2088,7 +2088,7 @@ protected override void StopProcessing() { } [System.Management.Automation.CmdletAttribute("Save", "Help", DefaultParameterSetName="Path", HelpUri="http://go.microsoft.com/fwlink/?LinkID=210612")] public sealed class SaveHelpCommand : Microsoft.PowerShell.Commands.UpdatableHelpCommandBase { public SaveHelpCommand() { } - + [System.Management.Automation.ParameterAttribute(Mandatory=true, Position=0, ParameterSetName="Path")] [System.Management.Automation.ValidateNotNullAttribute] public string[] DestinationPath { get { return default(string[]); } set { } } @@ -2101,7 +2101,7 @@ public SaveHelpCommand() { } [System.Management.Automation.ParameterAttribute(Position=1, ParameterSetName="Path", ValueFromPipelineByPropertyName=true)] [System.Management.Automation.ValidateNotNullAttribute] public string[] Module { get { return default(string[]); } set { } } - + protected override void BeginProcessing() { } protected override void ProcessRecord() { } } @@ -2114,7 +2114,7 @@ public enum SessionFilterState { } public abstract class SessionStateProviderBase : System.Management.Automation.Provider.ContainerCmdletProvider, System.Management.Automation.Provider.IContentCmdletProvider { protected SessionStateProviderBase() { } - + public void ClearContent(string path) { } public object ClearContentDynamicParameters(string path) { return default(object); } protected override void ClearItem(string path) { } @@ -2145,7 +2145,7 @@ public void Seek(long offset, System.IO.SeekOrigin origin) { } [System.Management.Automation.CmdletAttribute("Set", "PSDebug", HelpUri="http://go.microsoft.com/fwlink/?LinkID=113398")] public sealed class SetPSDebugCommand : System.Management.Automation.PSCmdlet { public SetPSDebugCommand() { } - + [System.Management.Automation.ParameterAttribute(ParameterSetName="off")] public System.Management.Automation.SwitchParameter Off { get { return default(System.Management.Automation.SwitchParameter); } set { } } [System.Management.Automation.ParameterAttribute(ParameterSetName="on")] @@ -2155,13 +2155,13 @@ public SetPSDebugCommand() { } [System.Management.Automation.ParameterAttribute(ParameterSetName="on")] [System.Management.Automation.ValidateRangeAttribute(0, 2)] public int Trace { get { return default(int); } set { } } - + protected override void BeginProcessing() { } } [System.Management.Automation.CmdletAttribute("Set", "PSSessionConfiguration", DefaultParameterSetName="NameParameterSet", SupportsShouldProcess=true, ConfirmImpact=(System.Management.Automation.ConfirmImpact)(3), HelpUri="http://go.microsoft.com/fwlink/?LinkID=144307")] public sealed class SetPSSessionConfigurationCommand : Microsoft.PowerShell.Commands.PSSessionConfigurationCommandBase { public SetPSSessionConfigurationCommand() { } - + protected override void BeginProcessing() { } protected override void EndProcessing() { } protected override void ProcessRecord() { } @@ -2169,7 +2169,7 @@ protected override void ProcessRecord() { } [System.Management.Automation.CmdletAttribute("Set", "StrictMode", DefaultParameterSetName="Version", HelpUri="http://go.microsoft.com/fwlink/?LinkID=113450")] public class SetStrictModeCommand : System.Management.Automation.PSCmdlet { public SetStrictModeCommand() { } - + [System.Management.Automation.ParameterAttribute(ParameterSetName="Off", Mandatory=true)] public System.Management.Automation.SwitchParameter Off { get { return default(System.Management.Automation.SwitchParameter); } set { } } //Internal: [Microsoft.PowerShell.Commands.SetStrictModeCommand.ArgumentToVersionTransformationAttribute] @@ -2177,14 +2177,14 @@ public SetStrictModeCommand() { } [System.Management.Automation.AliasAttribute(new string[]{ "v"})] [System.Management.Automation.ParameterAttribute(ParameterSetName="Version", Mandatory=true)] public System.Version Version { get { return default(System.Version); } set { } } - + protected override void EndProcessing() { } } [System.Management.Automation.CmdletAttribute("Start", "Job", DefaultParameterSetName="ComputerName", HelpUri="http://go.microsoft.com/fwlink/?LinkID=113405")] //Internal: [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(System.Management.Automation.PSRemotingJob)})] public class StartJobCommand : Microsoft.PowerShell.Commands.PSExecutionCmdlet, System.IDisposable { public StartJobCommand() { } - + public override System.Management.Automation.SwitchParameter AllowRedirection { get { return default(System.Management.Automation.SwitchParameter); } } public override string ApplicationName { get { return default(string); } } [System.Management.Automation.AliasAttribute(new string[]{ "Args"})] @@ -2249,7 +2249,7 @@ public StartJobCommand() { } [System.Management.Automation.ValidateNotNullOrEmptyAttribute] public string Type { get { return default(string); } set { } } public override System.Management.Automation.SwitchParameter UseSSL { get { return default(System.Management.Automation.SwitchParameter); } } - + protected override void BeginProcessing() { } protected override void CreateHelpersForSpecifiedComputerNames() { } public void Dispose() { } @@ -2260,14 +2260,14 @@ protected override void ProcessRecord() { } [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(System.Management.Automation.Job)})] public class StopJobCommand : Microsoft.PowerShell.Commands.JobCmdletBase, System.IDisposable { public StopJobCommand() { } - + public override string[] Command { get { return default(string[]); } } [System.Management.Automation.ParameterAttribute(Mandatory=true, Position=0, ValueFromPipeline=true, ValueFromPipelineByPropertyName=true, ParameterSetName="JobParameterSet")] [System.Management.Automation.ValidateNotNullOrEmptyAttribute] public System.Management.Automation.Job[] Job { get { return default(System.Management.Automation.Job[]); } set { } } [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter PassThru { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + public void Dispose() { } protected void Dispose(bool disposing) { } protected override void EndProcessing() { } @@ -2278,7 +2278,7 @@ protected override void StopProcessing() { } [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(System.Management.Automation.Job)})] public class SuspendJobCommand : Microsoft.PowerShell.Commands.JobCmdletBase, System.IDisposable { public SuspendJobCommand() { } - + public override string[] Command { get { return default(string[]); } } [System.Management.Automation.AliasAttribute(new string[]{ "F"})] [System.Management.Automation.ParameterAttribute(ParameterSetName="FilterParameterSet")] @@ -2293,7 +2293,7 @@ public SuspendJobCommand() { } public System.Management.Automation.Job[] Job { get { return default(System.Management.Automation.Job[]); } set { } } [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter Wait { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + public void Dispose() { } protected void Dispose(bool disposing) { } protected override void EndProcessing() { } @@ -2304,26 +2304,26 @@ protected override void StopProcessing() { } [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(System.Management.Automation.PSModuleInfo)})] public sealed class TestModuleManifestCommand : Microsoft.PowerShell.Commands.ModuleCmdletBase { public TestModuleManifestCommand() { } - + [System.Management.Automation.ParameterAttribute(Mandatory=true, ValueFromPipeline=true, Position=0, ValueFromPipelineByPropertyName=true)] public string Path { get { return default(string); } set { } } - + protected override void ProcessRecord() { } } [System.Management.Automation.CmdletAttribute("Test", "PSSessionConfigurationFile", HelpUri="http://go.microsoft.com/fwlink/?LinkID=217039")] [System.Management.Automation.OutputTypeAttribute(new string[]{ "bool"})] public class TestPSSessionConfigurationFileCommand : System.Management.Automation.PSCmdlet { public TestPSSessionConfigurationFileCommand() { } - + [System.Management.Automation.ParameterAttribute(Mandatory=true, ValueFromPipeline=true, Position=0, ValueFromPipelineByPropertyName=true)] public string Path { get { return default(string); } set { } } - + protected override void ProcessRecord() { } } [System.Management.Automation.CmdletAttribute("Unregister", "PSSessionConfiguration", SupportsShouldProcess=true, ConfirmImpact=(System.Management.Automation.ConfirmImpact)(3), HelpUri="http://go.microsoft.com/fwlink/?LinkID=144308")] public sealed class UnregisterPSSessionConfigurationCommand : System.Management.Automation.PSCmdlet { public UnregisterPSSessionConfigurationCommand() { } - + [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter Force { get { return default(System.Management.Automation.SwitchParameter); } set { } } [System.Management.Automation.ParameterAttribute(Mandatory=true, Position=0, ValueFromPipelineByPropertyName=true)] @@ -2331,7 +2331,7 @@ public UnregisterPSSessionConfigurationCommand() { } public string Name { get { return default(string); } set { } } [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter NoServiceRestart { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + protected override void BeginProcessing() { } protected override void EndProcessing() { } protected override void ProcessRecord() { } @@ -2348,14 +2348,14 @@ internal UpdatableHelpCommandBase() { } public System.Globalization.CultureInfo[] UICulture { get { return default(System.Globalization.CultureInfo[]); } set { } } [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter UseDefaultCredentials { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + protected override void EndProcessing() { } protected override void StopProcessing() { } } [System.Management.Automation.CmdletAttribute("Update", "Help", DefaultParameterSetName="Path", HelpUri="http://go.microsoft.com/fwlink/?LinkID=210614")] public sealed class UpdateHelpCommand : Microsoft.PowerShell.Commands.UpdatableHelpCommandBase { public UpdateHelpCommand() { } - + [System.Management.Automation.AliasAttribute(new string[]{ "PSPath"})] [System.Management.Automation.ParameterAttribute(ParameterSetName="LiteralPath", ValueFromPipelineByPropertyName=true)] [System.Management.Automation.ValidateNotNullAttribute] @@ -2370,7 +2370,7 @@ public UpdateHelpCommand() { } [System.Management.Automation.ParameterAttribute(Position=1, ParameterSetName="Path")] [System.Management.Automation.ValidateNotNullAttribute] public string[] SourcePath { get { return default(string[]); } set { } } - + protected override void BeginProcessing() { } protected override void ProcessRecord() { } } @@ -2382,16 +2382,16 @@ protected override void ProcessRecord() { } [System.Management.Automation.Provider.CmdletProviderAttribute("Variable", (System.Management.Automation.Provider.ProviderCapabilities)(16))] public sealed class VariableProvider : Microsoft.PowerShell.Commands.SessionStateProviderBase { public const string ProviderName = "Variable"; - + public VariableProvider() { } - + protected override System.Collections.ObjectModel.Collection InitializeDefaultDrives() { return default(System.Collections.ObjectModel.Collection); } } [System.Management.Automation.CmdletAttribute("Wait", "Job", DefaultParameterSetName="SessionIdParameterSet", HelpUri="http://go.microsoft.com/fwlink/?LinkID=113422")] [System.Management.Automation.OutputTypeAttribute(new System.Type[]{ typeof(System.Management.Automation.Job)})] public class WaitJobCommand : Microsoft.PowerShell.Commands.JobCmdletBase, System.IDisposable { public WaitJobCommand() { } - + [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter Any { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.SwitchParameter); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public override string[] Command { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string[]); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } @@ -2404,7 +2404,7 @@ public WaitJobCommand() { } [System.Management.Automation.ParameterAttribute] [System.Management.Automation.ValidateRangeAttribute(-1, 2147483647)] public int Timeout { get { return default(int); } set { } } - + protected override void BeginProcessing() { } public void Dispose() { } protected override void EndProcessing() { } @@ -2414,7 +2414,7 @@ protected override void StopProcessing() { } [System.Management.Automation.CmdletAttribute("Where", "Object", DefaultParameterSetName="EqualSet", HelpUri="http://go.microsoft.com/fwlink/?LinkID=113423", RemotingCapability=(System.Management.Automation.RemotingCapability)(0))] public sealed class WhereObjectCommand : System.Management.Automation.PSCmdlet { public WhereObjectCommand() { } - + [System.Management.Automation.ParameterAttribute(Mandatory=true, ParameterSetName="CaseSensitiveContainsSet")] public System.Management.Automation.SwitchParameter CContains { get { return default(System.Management.Automation.SwitchParameter); } set { } } [System.Management.Automation.ParameterAttribute(Mandatory=true, ParameterSetName="CaseSensitiveEqualSet")] @@ -2556,7 +2556,7 @@ public WhereObjectCommand() { } [System.Management.Automation.ParameterAttribute(Position=1, ParameterSetName="NotLikeSet")] [System.Management.Automation.ParameterAttribute(Position=1, ParameterSetName="NotMatchSet")] public object Value { get { return default(object); } set { } } - + protected override void BeginProcessing() { } protected override void ProcessRecord() { } } @@ -2572,7 +2572,7 @@ internal WSManConfigurationOption() { } public System.Nullable MaxSessionsPerUser { get { return default(System.Nullable); } } public System.Nullable OutputBufferingMode { get { return default(System.Nullable); } } public System.Nullable ProcessIdleTimeoutSec { get { return default(System.Nullable); } } - + protected internal override void LoadFromDefaults(System.Management.Automation.Runspaces.PSSessionType sessionType, bool keepAssigned) { } } } @@ -2580,14 +2580,14 @@ namespace Microsoft.PowerShell.Commands.Internal { #if WIN32_REGISTRY public sealed class TransactedRegistryAccessRule : System.Security.AccessControl.AccessRule { public TransactedRegistryAccessRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.RegistryRights registryRights, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.AccessControlType type) { } - + public System.Security.AccessControl.RegistryRights RegistryRights { get { return default(System.Security.AccessControl.RegistryRights); } } - + } public sealed class TransactedRegistryAuditRule : System.Security.AccessControl.AuditRule { internal TransactedRegistryAuditRule() { } public System.Security.AccessControl.RegistryRights RegistryRights { get { return default(System.Security.AccessControl.RegistryRights); } } - + } [System.Runtime.InteropServices.ComVisibleAttribute(true)] public sealed class TransactedRegistryKey : System.MarshalByRefObject, System.IDisposable { @@ -2595,7 +2595,7 @@ internal TransactedRegistryKey() { } public string Name { get { return default(string); } } public int SubKeyCount { get { return default(int); } } public int ValueCount { get { return default(int); } } - + public void Close() { } public Microsoft.PowerShell.Commands.Internal.TransactedRegistryKey CreateSubKey(string subkey) { return default(Microsoft.PowerShell.Commands.Internal.TransactedRegistryKey); } [System.Runtime.InteropServices.ComVisibleAttribute(false)] @@ -2633,11 +2633,11 @@ public void SetValue(string name, object value, Microsoft.Win32.RegistryValueKin } public sealed class TransactedRegistrySecurity : System.Security.AccessControl.NativeObjectSecurity { public TransactedRegistrySecurity() { } - + public override System.Type AccessRightType { get { return default(System.Type); } } public override System.Type AccessRuleType { get { return default(System.Type); } } public override System.Type AuditRuleType { get { return default(System.Type); } } - + public override System.Security.AccessControl.AccessRule AccessRuleFactory(System.Security.Principal.IdentityReference identityReference, int accessMask, bool isInherited, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.AccessControlType type) { return default(System.Security.AccessControl.AccessRule); } public void AddAccessRule(Microsoft.PowerShell.Commands.Internal.TransactedRegistryAccessRule rule) { } public void AddAuditRule(Microsoft.PowerShell.Commands.Internal.TransactedRegistryAuditRule rule) { } @@ -2657,10 +2657,10 @@ public void SetAuditRule(Microsoft.PowerShell.Commands.Internal.TransactedRegist namespace Microsoft.PowerShell.Commands.Internal.Format { public abstract class FrontEndCommandBase : System.Management.Automation.PSCmdlet, System.IDisposable { protected FrontEndCommandBase() { } - + [System.Management.Automation.ParameterAttribute(ValueFromPipeline=true)] public System.Management.Automation.PSObject InputObject { get { return default(System.Management.Automation.PSObject); } set { } } - + protected override void BeginProcessing() { } public void Dispose() { } protected virtual void Dispose(bool disposing) { } @@ -2674,7 +2674,7 @@ protected virtual void WriteObjectCall(object value) { } } public class OuterFormatShapeCommandBase : Microsoft.PowerShell.Commands.Internal.Format.FrontEndCommandBase { public OuterFormatShapeCommandBase() { } - + [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter DisplayError { get { return default(System.Management.Automation.SwitchParameter); } set { } } [System.Management.Automation.ParameterAttribute] @@ -2688,26 +2688,26 @@ public OuterFormatShapeCommandBase() { } public System.Management.Automation.SwitchParameter ShowError { get { return default(System.Management.Automation.SwitchParameter); } set { } } [System.Management.Automation.ParameterAttribute] public string View { get { return default(string); } set { } } - + protected override void BeginProcessing() { } } public class OuterFormatTableAndListBase : Microsoft.PowerShell.Commands.Internal.Format.OuterFormatShapeCommandBase { public OuterFormatTableAndListBase() { } - + [System.Management.Automation.ParameterAttribute(Position=0)] public object[] Property { get { return default(object[]); } set { } } - + } public class OuterFormatTableBase : Microsoft.PowerShell.Commands.Internal.Format.OuterFormatTableAndListBase { public OuterFormatTableBase() { } - + [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter AutoSize { get { return default(System.Management.Automation.SwitchParameter); } set { } } [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter HideTableHeaders { get { return default(System.Management.Automation.SwitchParameter); } set { } } [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter Wrap { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + } } namespace Microsoft.PowerShell.Commands.Management { @@ -2715,9 +2715,9 @@ namespace Microsoft.PowerShell.Commands.Management { public class TransactedString : System.Transactions.IEnlistmentNotification { public TransactedString() { } public TransactedString(string value) { } - + public int Length { get { return default(int); } } - + public void Append(string text) { } public void Remove(int startIndex, int length) { } void System.Transactions.IEnlistmentNotification.Commit(System.Transactions.Enlistment enlistment) { } @@ -2740,15 +2740,15 @@ public class ActionPreferenceStopException : System.Management.Automation.Runtim public ActionPreferenceStopException() { } public ActionPreferenceStopException(string message) { } public ActionPreferenceStopException(string message, System.Exception innerException) { } - + public override System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } } [System.AttributeUsageAttribute((AttributeTargets)388, AllowMultiple=false)] public sealed class AliasAttribute : System.Management.Automation.Internal.ParsingBaseAttribute { public AliasAttribute(params string[] aliasNames) { } - + public System.Collections.Generic.IList AliasNames { get { return default(System.Collections.Generic.IList); } } - + } public class AliasInfo : System.Management.Automation.CommandInfo { internal AliasInfo() { } @@ -2758,7 +2758,7 @@ internal AliasInfo() { } public override System.Collections.ObjectModel.ReadOnlyCollection OutputType { get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public System.Management.Automation.CommandInfo ReferencedCommand { get { return default(System.Management.Automation.CommandInfo); } } public System.Management.Automation.CommandInfo ResolvedCommand { get { return default(System.Management.Automation.CommandInfo); } } - + } public enum Alignment { Center = 2, @@ -2790,12 +2790,12 @@ internal ApplicationInfo() { } public override System.Collections.ObjectModel.ReadOnlyCollection OutputType { get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public string Path { get { return default(string); } } public override System.Management.Automation.SessionStateEntryVisibility Visibility { get { return default(System.Management.Automation.SessionStateEntryVisibility); } set { } } - + } [System.AttributeUsageAttribute((AttributeTargets)384)] public abstract class ArgumentTransformationAttribute : System.Management.Automation.Internal.CmdletMetadataAttribute { protected ArgumentTransformationAttribute() { } - + public abstract object Transform(System.Management.Automation.EngineIntrinsics engineIntrinsics, object inputData); } public class ArgumentTransformationMetadataException : System.Management.Automation.MetadataException { @@ -2805,13 +2805,13 @@ public ArgumentTransformationMetadataException(string message, System.Exception } public class AuthorizationManager { public AuthorizationManager(string shellId) { } - + protected internal virtual bool ShouldRun(System.Management.Automation.CommandInfo commandInfo, System.Management.Automation.CommandOrigin origin, System.Management.Automation.Host.PSHost host, out System.Exception reason) { reason = default(System.Exception); return default(bool); } } #if SYSTEM_DIAGNOSTICS public class BackgroundDispatcher : System.Management.Automation.IBackgroundDispatcher { public BackgroundDispatcher(System.Diagnostics.Eventing.EventProvider transferProvider, System.Diagnostics.Eventing.EventDescriptor transferEvent) { } - + public System.IAsyncResult BeginInvoke(System.Threading.WaitCallback callback, object state, System.AsyncCallback completionCallback, object asyncState) { return default(System.IAsyncResult); } public void EndInvoke(System.IAsyncResult asyncResult) { } public bool QueueUserWorkItem(System.Threading.WaitCallback callback) { return default(bool); } @@ -2825,13 +2825,13 @@ internal Breakpoint() { } public int HitCount { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(int); } } public int Id { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(int); } } public string Script { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } - + } public class BreakpointUpdatedEventArgs : System.EventArgs { internal BreakpointUpdatedEventArgs() { } public System.Management.Automation.Breakpoint Breakpoint { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Breakpoint); } } public System.Management.Automation.BreakpointUpdateType UpdateType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.BreakpointUpdateType); } } - + } public enum BreakpointUpdateType { Disabled = 3, @@ -2846,7 +2846,7 @@ internal CallStackFrame() { } public System.Management.Automation.Language.IScriptExtent Position { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.IScriptExtent); } } public int ScriptLineNumber { get { return default(int); } } public string ScriptName { get { return default(string); } } - + public System.Collections.Generic.Dictionary GetFrameVariables() { return default(System.Collections.Generic.Dictionary); } public string GetScriptLocation() { return default(string); } public override string ToString() { return default(string); } @@ -2862,13 +2862,13 @@ internal ChildItemCmdletProviderIntrinsics() { } } public abstract class Cmdlet : System.Management.Automation.Internal.InternalCommand { protected Cmdlet() { } - + public System.Management.Automation.ICommandRuntime CommandRuntime { get { return default(System.Management.Automation.ICommandRuntime); } set { } } #if TRANSACTIONS public System.Management.Automation.PSTransactionContext CurrentPSTransaction { get { return default(System.Management.Automation.PSTransactionContext); } } #endif public bool Stopping { get { return default(bool); } } - + protected virtual void BeginProcessing() { } protected virtual void EndProcessing() { } public virtual string GetResourceString(string baseName, string resourceId) { return default(string); } @@ -2896,22 +2896,22 @@ public void WriteWarning(string text) { } [System.AttributeUsageAttribute((AttributeTargets)4)] public sealed class CmdletAttribute : System.Management.Automation.CmdletCommonMetadataAttribute { public CmdletAttribute(string verbName, string nounName) { } - + public string NounName { get { return default(string); } } public string VerbName { get { return default(string); } } - + } [System.AttributeUsageAttribute((AttributeTargets)4)] public class CmdletBindingAttribute : System.Management.Automation.CmdletCommonMetadataAttribute { public CmdletBindingAttribute() { } - + public bool PositionalBinding { get { return default(bool); } set { } } - + } [System.AttributeUsageAttribute((AttributeTargets)4)] public abstract class CmdletCommonMetadataAttribute : System.Management.Automation.Internal.CmdletMetadataAttribute { protected CmdletCommonMetadataAttribute() { } - + public System.Management.Automation.ConfirmImpact ConfirmImpact { get { return default(System.Management.Automation.ConfirmImpact); } set { } } public string DefaultParameterSetName { get { return default(string); } set { } } public string HelpUri { get { return default(string); } set { } } @@ -2919,11 +2919,11 @@ protected CmdletCommonMetadataAttribute() { } public bool SupportsPaging { get { return default(bool); } set { } } public bool SupportsShouldProcess { get { return default(bool); } set { } } public bool SupportsTransactions { get { return default(bool); } set { } } - + } public class CmdletInfo : System.Management.Automation.CommandInfo { public CmdletInfo(string name, System.Type implementingType) { } - + public string DefaultParameterSet { get { return default(string); } } public override string Definition { get { return default(string); } } public string HelpFile { get { return default(string); } } @@ -2932,23 +2932,23 @@ public CmdletInfo(string name, System.Type implementingType) { } public System.Management.Automation.ScopedItemOptions Options { get { return default(System.Management.Automation.ScopedItemOptions); } set { } } public override System.Collections.ObjectModel.ReadOnlyCollection OutputType { get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public string Verb { get { return default(string); } } - + } public class CmdletInvocationException : System.Management.Automation.RuntimeException { public CmdletInvocationException() { } public CmdletInvocationException(string message) { } public CmdletInvocationException(string message, System.Exception innerException) { } - + public override System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } } public class CmdletProviderInvocationException : System.Management.Automation.CmdletInvocationException { public CmdletProviderInvocationException() { } public CmdletProviderInvocationException(string message) { } public CmdletProviderInvocationException(string message, System.Exception innerException) { } - + public System.Management.Automation.ProviderInfo ProviderInfo { get { return default(System.Management.Automation.ProviderInfo); } } public System.Management.Automation.ProviderInvocationException ProviderInvocationException { get { return default(System.Management.Automation.ProviderInvocationException); } } - + } public sealed class CmdletProviderManagementIntrinsics { internal CmdletProviderManagementIntrinsics() { } @@ -2959,7 +2959,7 @@ internal CmdletProviderManagementIntrinsics() { } public class CommandBreakpoint : System.Management.Automation.Breakpoint { internal CommandBreakpoint() { } public string Command { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } - + public override string ToString() { return default(string); } } public class CommandCompletion { @@ -2968,7 +2968,7 @@ internal CommandCompletion() { } public int CurrentMatchIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(int); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public int ReplacementIndex { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(int); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public int ReplacementLength { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(int); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } - + public static System.Management.Automation.CommandCompletion CompleteInput(System.Management.Automation.Language.Ast ast, System.Management.Automation.Language.Token[] tokens, System.Management.Automation.Language.IScriptPosition positionOfCursor, System.Collections.Hashtable options) { return default(System.Management.Automation.CommandCompletion); } public static System.Management.Automation.CommandCompletion CompleteInput(System.Management.Automation.Language.Ast ast, System.Management.Automation.Language.Token[] tokens, System.Management.Automation.Language.IScriptPosition cursorPosition, System.Collections.Hashtable options, System.Management.Automation.PowerShell powershell) { return default(System.Management.Automation.CommandCompletion); } public static System.Management.Automation.CommandCompletion CompleteInput(string input, int cursorIndex, System.Collections.Hashtable options) { return default(System.Management.Automation.CommandCompletion); } @@ -2988,7 +2988,7 @@ internal CommandInfo() { } public System.Collections.ObjectModel.ReadOnlyCollection ParameterSets { get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public System.Management.Automation.RemotingCapability RemotingCapability { get { return default(System.Management.Automation.RemotingCapability); } } public virtual System.Management.Automation.SessionStateEntryVisibility Visibility { get { return default(System.Management.Automation.SessionStateEntryVisibility); } set { } } - + public System.Management.Automation.ParameterMetadata ResolveParameter(string name) { return default(System.Management.Automation.ParameterMetadata); } public override string ToString() { return default(string); } } @@ -2998,7 +2998,7 @@ internal CommandInvocationIntrinsics() { } public bool HasErrors { get { return default(bool); } set { } } public System.EventHandler PostCommandLookupAction { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.EventHandler); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public System.EventHandler PreCommandLookupAction { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.EventHandler); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } - + public string ExpandString(string source) { return default(string); } public System.Management.Automation.CmdletInfo GetCmdlet(string commandName) { return default(System.Management.Automation.CmdletInfo); } public System.Management.Automation.CmdletInfo GetCmdletByTypeName(string cmdletTypeName) { return default(System.Management.Automation.CmdletInfo); } @@ -3021,7 +3021,7 @@ internal CommandLookupEventArgs() { } public System.Management.Automation.CommandOrigin CommandOrigin { get { return default(System.Management.Automation.CommandOrigin); } } public System.Management.Automation.ScriptBlock CommandScriptBlock { get { return default(System.Management.Automation.ScriptBlock); } set { } } public bool StopSearch { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(bool); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } - + } [System.Diagnostics.DebuggerDisplayAttribute("CommandName = {_commandName}; Type = {CommandType}")] public sealed class CommandMetadata { @@ -3030,7 +3030,7 @@ public CommandMetadata(System.Management.Automation.CommandInfo commandInfo, boo public CommandMetadata(System.Management.Automation.CommandMetadata other) { } public CommandMetadata(string path) { } public CommandMetadata(System.Type commandType) { } - + public System.Type CommandType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Type); } } public System.Management.Automation.ConfirmImpact ConfirmImpact { get { return default(System.Management.Automation.ConfirmImpact); } set { } } public string DefaultParameterSetName { get { return default(string); } set { } } @@ -3042,14 +3042,14 @@ public CommandMetadata(System.Type commandType) { } public bool SupportsPaging { get { return default(bool); } set { } } public bool SupportsShouldProcess { get { return default(bool); } set { } } public bool SupportsTransactions { get { return default(bool); } set { } } - + public static System.Collections.Generic.Dictionary GetRestrictedCommands(System.Management.Automation.SessionCapabilities sessionCapabilities) { return default(System.Collections.Generic.Dictionary); } } public class CommandNotFoundException : System.Management.Automation.RuntimeException { public CommandNotFoundException() { } public CommandNotFoundException(string message) { } public CommandNotFoundException(string message, System.Exception innerException) { } - + public string CommandName { get { return default(string); } set { } } public override System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } } @@ -3070,14 +3070,14 @@ internal CommandParameterInfo() { } public bool ValueFromPipeline { get { return default(bool); } } public bool ValueFromPipelineByPropertyName { get { return default(bool); } } public bool ValueFromRemainingArguments { get { return default(bool); } } - + } public class CommandParameterSetInfo { internal CommandParameterSetInfo() { } public bool IsDefault { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(bool); } } public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } public System.Collections.ObjectModel.ReadOnlyCollection Parameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } - + public override string ToString() { return default(string); } } [System.FlagsAttribute] @@ -3103,12 +3103,12 @@ public static class CompletionCompleters { public class CompletionResult { public CompletionResult(string completionText) { } public CompletionResult(string completionText, string listItemText, System.Management.Automation.CompletionResultType resultType, string toolTip) { } - + public string CompletionText { get { return default(string); } } public string ListItemText { get { return default(string); } } public System.Management.Automation.CompletionResultType ResultType { get { return default(System.Management.Automation.CompletionResultType); } } public string ToolTip { get { return default(string); } } - + } public enum CompletionResultType { Command = 2, @@ -3138,11 +3138,11 @@ public ContainerParentJob(string command, string name, System.Guid instanceId, s public ContainerParentJob(string command, string name, System.Management.Automation.JobIdentifier jobId) { } public ContainerParentJob(string command, string name, System.Management.Automation.JobIdentifier jobId, string jobType) { } public ContainerParentJob(string command, string name, string jobType) { } - + public override bool HasMoreData { get { return default(bool); } } public override string Location { get { return default(string); } } public override string StatusMessage { get { return default(string); } } - + public void AddChildJob(System.Management.Automation.Job2 childJob) { } protected override void Dispose(bool disposing) { } public override void ResumeJob() { } @@ -3172,7 +3172,7 @@ public void Clear(string[] path, bool force, bool literalPath) { } #if CONVERT_THROUGH_STRING public class ConvertThroughString : System.Management.Automation.PSTypeConverter { public ConvertThroughString() { } - + public override bool CanConvertFrom(object sourceValue, System.Type destinationType) { return default(bool); } public override bool CanConvertTo(object sourceValue, System.Type destinationType) { return default(bool); } public override object ConvertFrom(object sourceValue, System.Type destinationType, System.IFormatProvider formatProvider, bool ignoreCase) { return default(object); } @@ -3186,27 +3186,27 @@ public enum CopyContainers { [System.AttributeUsageAttribute((AttributeTargets)384, AllowMultiple=false)] public sealed class CredentialAttribute : System.Management.Automation.ArgumentTransformationAttribute { public CredentialAttribute() { } - + public override object Transform(System.Management.Automation.EngineIntrinsics engineIntrinsics, object inputData) { return default(object); } } public sealed class DataAddedEventArgs : System.EventArgs { internal DataAddedEventArgs() { } public int Index { get { return default(int); } } public System.Guid PowerShellInstanceId { get { return default(System.Guid); } } - + } public sealed class DataAddingEventArgs : System.EventArgs { internal DataAddingEventArgs() { } public object ItemAdded { get { return default(object); } } public System.Guid PowerShellInstanceId { get { return default(System.Guid); } } - + } public sealed class Debugger { internal Debugger() { } // Events public event System.EventHandler BreakpointUpdated { add { } remove { } } public event System.EventHandler DebuggerStop { add { } remove { } } - + } public enum DebuggerResumeAction { Continue = 0, @@ -3220,7 +3220,7 @@ internal DebuggerStopEventArgs() { } public System.Collections.ObjectModel.ReadOnlyCollection Breakpoints { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public System.Management.Automation.InvocationInfo InvocationInfo { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.InvocationInfo); } } public System.Management.Automation.DebuggerResumeAction ResumeAction { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.DebuggerResumeAction); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } - + } public class DebugRecord : System.Management.Automation.InformationalRecord { public DebugRecord(System.Management.Automation.PSObject record) { } @@ -3230,9 +3230,9 @@ public DebugRecord(string message) { } public sealed class DefaultParameterDictionary : System.Collections.Hashtable { public DefaultParameterDictionary() { } public DefaultParameterDictionary(System.Collections.IDictionary dictionary) { } - + public override object this[object key] { get { return default(object); } set { } } - + public override void Add(object key, object value) { } public bool ChangeSinceLastCheck() { return default(bool); } public override void Clear() { } @@ -3242,10 +3242,10 @@ public override void Remove(object key) { } #if FORMAT_API public sealed class DisplayEntry { public DisplayEntry(string value, System.Management.Automation.DisplayEntryValueType type) { } - + public string Value { get { return default(string); } } public System.Management.Automation.DisplayEntryValueType ValueType { get { return default(System.Management.Automation.DisplayEntryValueType); } } - + public override string ToString() { return default(string); } } public enum DisplayEntryValueType { @@ -3256,7 +3256,7 @@ public enum DisplayEntryValueType { public sealed class DriveManagementIntrinsics { internal DriveManagementIntrinsics() { } public System.Management.Automation.PSDriveInfo Current { get { return default(System.Management.Automation.PSDriveInfo); } } - + public System.Management.Automation.PSDriveInfo Get(string driveName) { return default(System.Management.Automation.PSDriveInfo); } public System.Collections.ObjectModel.Collection GetAll() { return default(System.Collections.ObjectModel.Collection); } public System.Collections.ObjectModel.Collection GetAllAtScope(string scope) { return default(System.Collections.ObjectModel.Collection); } @@ -3277,7 +3277,7 @@ internal EngineIntrinsics() { } public System.Management.Automation.CommandInvocationIntrinsics InvokeCommand { get { return default(System.Management.Automation.CommandInvocationIntrinsics); } } public System.Management.Automation.ProviderIntrinsics InvokeProvider { get { return default(System.Management.Automation.ProviderIntrinsics); } } public System.Management.Automation.SessionState SessionState { get { return default(System.Management.Automation.SessionState); } } - + } public enum ErrorCategory { AuthenticationError = 28, @@ -3320,7 +3320,7 @@ internal ErrorCategoryInfo() { } public string Reason { get { return default(string); } set { } } public string TargetName { get { return default(string); } set { } } public string TargetType { get { return default(string); } set { } } - + public string GetMessage() { return default(string); } public string GetMessage(System.Globalization.CultureInfo uiCultureInfo) { return default(string); } public override string ToString() { return default(string); } @@ -3330,17 +3330,17 @@ public ErrorDetails(System.Management.Automation.Cmdlet cmdlet, string baseName, public ErrorDetails(System.Management.Automation.IResourceSupplier resourceSupplier, string baseName, string resourceId, params object[] args) { } public ErrorDetails(System.Reflection.Assembly assembly, string baseName, string resourceId, params object[] args) { } public ErrorDetails(string message) { } - + public string Message { get { return default(string); } } public string RecommendedAction { get { return default(string); } set { } } - + public override string ToString() { return default(string); } } public class ErrorRecord { public ErrorRecord(System.Exception exception, string errorId, System.Management.Automation.ErrorCategory errorCategory, object targetObject) { } public ErrorRecord(System.Management.Automation.ErrorRecord errorRecord, System.Exception replaceParentContainsErrorRecordException) { } - + public System.Management.Automation.ErrorCategoryInfo CategoryInfo { get { return default(System.Management.Automation.ErrorCategoryInfo); } } public System.Management.Automation.ErrorDetails ErrorDetails { get { return default(System.Management.Automation.ErrorDetails); } set { } } public System.Exception Exception { get { return default(System.Exception); } } @@ -3349,16 +3349,16 @@ public ErrorRecord(System.Management.Automation.ErrorRecord errorRecord, System. public System.Collections.ObjectModel.ReadOnlyCollection PipelineIterationInfo { get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public string ScriptStackTrace { get { return default(string); } } public object TargetObject { get { return default(object); } } - + public override string ToString() { return default(string); } } public sealed class ExtendedTypeDefinition { public ExtendedTypeDefinition(string typeName) { } public ExtendedTypeDefinition(string typeName, System.Collections.Generic.IEnumerable viewDefinitions) { } - + public System.Collections.Generic.List FormatViewDefinition { get { return default(System.Collections.Generic.List); } } public string TypeName { get { return default(string); } } - + public override string ToString() { return default(string); } } public class ExtendedTypeSystemException : System.Management.Automation.RuntimeException { @@ -3375,7 +3375,7 @@ internal ExternalScriptInfo() { } public System.Management.Automation.ScriptBlock ScriptBlock { get { return default(System.Management.Automation.ScriptBlock); } } public string ScriptContents { get { return default(string); } } public override System.Management.Automation.SessionStateEntryVisibility Visibility { get { return default(System.Management.Automation.SessionStateEntryVisibility); } set { } } - + public void ValidateScriptInfo(System.Management.Automation.Host.PSHost host) { } } #if FILTER_INFO @@ -3386,21 +3386,21 @@ internal FilterInfo() { } public sealed class FlagsExpression where T : struct, System.IConvertible { public FlagsExpression(object[] expression) { } public FlagsExpression(string expression) { } - + public bool Evaluate(T value) { return default(bool); } } public sealed class FormatViewDefinition { public FormatViewDefinition(string name, System.Management.Automation.PSControl control) { } - + public System.Management.Automation.PSControl Control { get { return default(System.Management.Automation.PSControl); } } public string Name { get { return default(string); } } - + public override string ToString() { return default(string); } } public class ForwardedEventArgs : System.EventArgs { internal ForwardedEventArgs() { } public System.Management.Automation.PSObject SerializedRemoteEventArgs { get { return default(System.Management.Automation.PSObject); } } - + } public class FunctionInfo : System.Management.Automation.CommandInfo { internal FunctionInfo() { } @@ -3414,7 +3414,7 @@ internal FunctionInfo() { } public override System.Collections.ObjectModel.ReadOnlyCollection OutputType { get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public System.Management.Automation.ScriptBlock ScriptBlock { get { return default(System.Management.Automation.ScriptBlock); } } public string Verb { get { return default(string); } } - + protected internal virtual void Update(System.Management.Automation.FunctionInfo newFunction, bool force, System.Management.Automation.ScopedItemOptions options, string helpFile) { } } public class GettingValueExceptionEventArgs : System.EventArgs { @@ -3422,7 +3422,7 @@ internal GettingValueExceptionEventArgs() { } public System.Exception Exception { get { return default(System.Exception); } } public bool ShouldThrow { get { return default(bool); } set { } } public object ValueReplacement { get { return default(object); } set { } } - + } public class GetValueException : System.Management.Automation.ExtendedTypeSystemException { public GetValueException() { } @@ -3452,7 +3452,7 @@ public partial interface ICommandRuntime { System.Management.Automation.PSTransactionContext CurrentPSTransaction { get; } #endif System.Management.Automation.Host.PSHost Host { get; } - + bool ShouldContinue(string query, string caption); bool ShouldContinue(string query, string caption, ref bool yesToAll, ref bool noToAll); bool ShouldProcess(string target); @@ -3473,7 +3473,7 @@ public partial interface ICommandRuntime { } public partial interface IContainsErrorRecord { System.Management.Automation.ErrorRecord ErrorRecord { get; } - + } public partial interface IDynamicParameters { object GetDynamicParameters(); @@ -3491,7 +3491,7 @@ internal InformationalRecord() { } public System.Management.Automation.InvocationInfo InvocationInfo { get { return default(System.Management.Automation.InvocationInfo); } } public string Message { get { return default(string); } set { } } public System.Collections.ObjectModel.ReadOnlyCollection PipelineIterationInfo { get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } - + public override string ToString() { return default(string); } } public class InvalidJobStateException : System.Exception { @@ -3499,14 +3499,14 @@ public InvalidJobStateException() { } public InvalidJobStateException(System.Management.Automation.JobState currentState, string actionMessage) { } public InvalidJobStateException(string message) { } public InvalidJobStateException(string message, System.Exception innerException) { } - + public System.Management.Automation.JobState CurrentState { get { return default(System.Management.Automation.JobState); } } } public class InvalidPowerShellStateException : System.Exception { public InvalidPowerShellStateException() { } public InvalidPowerShellStateException(string message) { } public InvalidPowerShellStateException(string message, System.Exception innerException) { } - + public System.Management.Automation.PSInvocationState CurrentState { get { return default(System.Management.Automation.PSInvocationState); } } } [System.Diagnostics.DebuggerDisplayAttribute("Command = {_commandInfo}")] @@ -3529,7 +3529,7 @@ internal InvocationInfo() { } public int ScriptLineNumber { get { return default(int); } } public string ScriptName { get { return default(string); } } public System.Collections.Generic.List UnboundArguments { get { return default(System.Collections.Generic.List); } } - + } public partial interface IResourceSupplier { string GetResourceString(string baseName, string resourceId); @@ -3570,7 +3570,7 @@ protected Job(string command, string name) { } protected Job(string command, string name, System.Collections.Generic.IList childJobs) { } protected Job(string command, string name, System.Guid instanceId) { } protected Job(string command, string name, System.Management.Automation.JobIdentifier token) { } - + public System.Collections.Generic.IList ChildJobs { get { return default(System.Collections.Generic.IList); } } public string Command { get { return default(string); } } public System.Management.Automation.PSDataCollection Debug { get { return default(System.Management.Automation.PSDataCollection); } set { } } @@ -3590,10 +3590,10 @@ protected Job(string command, string name, System.Management.Automation.JobIdent public abstract string StatusMessage { get; } public System.Management.Automation.PSDataCollection Verbose { get { return default(System.Management.Automation.PSDataCollection); } set { } } public System.Management.Automation.PSDataCollection Warning { get { return default(System.Management.Automation.PSDataCollection); } set { } } - + // Events public event System.EventHandler StateChanged { add { } remove { } } - + protected string AutoGenerateJobName() { return default(string); } public void Dispose() { } protected virtual void Dispose(bool disposing) { } @@ -3611,17 +3611,17 @@ protected Job2(string command, string name) { } protected Job2(string command, string name, System.Collections.Generic.IList childJobs) { } protected Job2(string command, string name, System.Guid instanceId) { } protected Job2(string command, string name, System.Management.Automation.JobIdentifier token) { } - + public System.Collections.Generic.List StartParameters { get { return default(System.Collections.Generic.List); } set { } } protected object SyncRoot { get { return default(object); } } - + // Events public event System.EventHandler ResumeJobCompleted { add { } remove { } } public event System.EventHandler StartJobCompleted { add { } remove { } } public event System.EventHandler StopJobCompleted { add { } remove { } } public event System.EventHandler SuspendJobCompleted { add { } remove { } } public event System.EventHandler UnblockJobCompleted { add { } remove { } } - + protected virtual void OnResumeJobCompleted(System.ComponentModel.AsyncCompletedEventArgs eventArgs) { } protected virtual void OnStartJobCompleted(System.ComponentModel.AsyncCompletedEventArgs eventArgs) { } protected virtual void OnStopJobCompleted(System.ComponentModel.AsyncCompletedEventArgs eventArgs) { } @@ -3647,12 +3647,12 @@ internal JobDataAddedEventArgs() { } public System.Management.Automation.PowerShellStreamType DataType { get { return default(System.Management.Automation.PowerShellStreamType); } } public int Index { get { return default(int); } } public System.Management.Automation.Job SourceJob { get { return default(System.Management.Automation.Job); } } - + } public class JobDefinition { public JobDefinition(System.Type jobSourceAdapterType, string command, string name) { } - + public string Command { get { return default(string); } } public System.Management.Automation.CommandInfo CommandInfo { get { return default(System.Management.Automation.CommandInfo); } } public System.Guid InstanceId { get { return default(System.Guid); } set { } } @@ -3660,7 +3660,7 @@ public JobDefinition(System.Type jobSourceAdapterType, string command, string na public string JobSourceAdapterTypeName { get { return default(string); } set { } } public string ModuleName { get { return default(string); } set { } } public string Name { get { return default(string); } set { } } - + public virtual void Load(System.IO.Stream stream) { } public virtual void Save(System.IO.Stream stream) { } } @@ -3669,7 +3669,7 @@ public JobFailedException() { } public JobFailedException(System.Exception innerException, System.Management.Automation.Language.ScriptExtent displayScriptPosition) { } public JobFailedException(string message) { } public JobFailedException(string message, System.Exception innerException) { } - + public System.Management.Automation.Language.ScriptExtent DisplayScriptPosition { get { return default(System.Management.Automation.Language.ScriptExtent); } } public override string Message { get { return default(string); } } public System.Exception Reason { get { return default(System.Exception); } } @@ -3683,13 +3683,13 @@ public JobInvocationInfo(System.Management.Automation.JobDefinition definition, public JobInvocationInfo(System.Management.Automation.JobDefinition definition, System.Collections.Generic.IEnumerable> parameterCollectionList) { } public JobInvocationInfo(System.Management.Automation.JobDefinition definition, System.Collections.Generic.IEnumerable parameters) { } public JobInvocationInfo(System.Management.Automation.JobDefinition definition, System.Management.Automation.Runspaces.CommandParameterCollection parameters) { } - + public string Command { get { return default(string); } set { } } public System.Management.Automation.JobDefinition Definition { get { return default(System.Management.Automation.JobDefinition); } set { } } public System.Guid InstanceId { get { return default(System.Guid); } } public string Name { get { return default(string); } set { } } public System.Collections.Generic.List Parameters { get { return default(System.Collections.Generic.List); } } - + public virtual void Load(System.IO.Stream stream) { } public virtual void Save(System.IO.Stream stream) { } } @@ -3703,15 +3703,15 @@ public void PersistJob(System.Management.Automation.Job2 job, System.Management. public class JobRepository : System.Management.Automation.Repository { internal JobRepository() : base (default(string)) { } public System.Collections.Generic.List Jobs { get { return default(System.Collections.Generic.List); } } - + public System.Management.Automation.Job GetJob(System.Guid instanceId) { return default(System.Management.Automation.Job); } protected override System.Guid GetKey(System.Management.Automation.Job item) { return default(System.Guid); } } public abstract class JobSourceAdapter { protected JobSourceAdapter() { } - + public string Name { get { return default(string); } set { } } - + public abstract System.Management.Automation.Job2 GetJobByInstanceId(System.Guid instanceId, bool recurse); public abstract System.Management.Automation.Job2 GetJobBySessionId(int id, bool recurse); public abstract System.Collections.Generic.IList GetJobs(); @@ -3742,18 +3742,18 @@ public enum JobState { public sealed class JobStateEventArgs : System.EventArgs { public JobStateEventArgs(System.Management.Automation.JobStateInfo jobStateInfo) { } public JobStateEventArgs(System.Management.Automation.JobStateInfo jobStateInfo, System.Management.Automation.JobStateInfo previousJobStateInfo) { } - + public System.Management.Automation.JobStateInfo JobStateInfo { get { return default(System.Management.Automation.JobStateInfo); } } public System.Management.Automation.JobStateInfo PreviousJobStateInfo { get { return default(System.Management.Automation.JobStateInfo); } } - + } public sealed class JobStateInfo { public JobStateInfo(System.Management.Automation.JobState state) { } public JobStateInfo(System.Management.Automation.JobState state, System.Exception reason) { } - + public System.Exception Reason { get { return default(System.Exception); } } public System.Management.Automation.JobState State { get { return default(System.Management.Automation.JobState); } } - + public override string ToString() { return default(string); } } public enum JobThreadOptions { @@ -3784,33 +3784,33 @@ public class LineBreakpoint : System.Management.Automation.Breakpoint { internal LineBreakpoint() { } public int Column { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(int); } } public int Line { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(int); } } - + public override string ToString() { return default(string); } } #if FORMAT_API public sealed class ListControl : System.Management.Automation.PSControl { public ListControl() { } public ListControl(System.Collections.Generic.IEnumerable entries) { } - + public System.Collections.Generic.List Entries { get { return default(System.Collections.Generic.List); } } - + public override string ToString() { return default(string); } } public sealed class ListControlEntry { public ListControlEntry() { } public ListControlEntry(System.Collections.Generic.IEnumerable listItems) { } public ListControlEntry(System.Collections.Generic.IEnumerable listItems, System.Collections.Generic.IEnumerable selectedBy) { } - + public System.Collections.Generic.List Items { get { return default(System.Collections.Generic.List); } } public System.Collections.Generic.List SelectedBy { get { return default(System.Collections.Generic.List); } } - + } public sealed class ListControlEntryItem { public ListControlEntryItem(string label, System.Management.Automation.DisplayEntry entry) { } - + public System.Management.Automation.DisplayEntry DisplayEntry { get { return default(System.Management.Automation.DisplayEntry); } } public string Label { get { return default(string); } } - + } #endif public class MetadataException : System.Management.Automation.RuntimeException { @@ -3844,11 +3844,11 @@ public enum ModuleType { public sealed class OutputTypeAttribute : System.Management.Automation.Internal.CmdletMetadataAttribute { public OutputTypeAttribute(params string[] type) { } public OutputTypeAttribute(params System.Type[] type) { } - + public string[] ParameterSetName { get { return default(string[]); } set { } } public string ProviderCmdlet { get { return default(string); } set { } } public System.Management.Automation.PSTypeName[] Type { get { return default(System.Management.Automation.PSTypeName[]); } } - + } public sealed class PagingParameters { internal PagingParameters() { } @@ -3858,15 +3858,15 @@ internal PagingParameters() { } public System.Management.Automation.SwitchParameter IncludeTotalCount { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.SwitchParameter); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } [System.Management.Automation.ParameterAttribute] public ulong Skip { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(ulong); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } - + public System.Management.Automation.PSObject NewTotalCount(ulong totalCount, double accuracy) { return default(System.Management.Automation.PSObject); } } [System.AttributeUsageAttribute((AttributeTargets)384, AllowMultiple=true)] public sealed class ParameterAttribute : System.Management.Automation.Internal.ParsingBaseAttribute { public const string AllParameterSets = "__AllParameterSets"; - + public ParameterAttribute() { } - + public string HelpMessage { get { return default(string); } set { } } public string HelpMessageBaseName { get { return default(string); } set { } } public string HelpMessageResourceId { get { return default(string); } set { } } @@ -3876,13 +3876,13 @@ public ParameterAttribute() { } public bool ValueFromPipeline { get { return default(bool); } set { } } public bool ValueFromPipelineByPropertyName { get { return default(bool); } set { } } public bool ValueFromRemainingArguments { get { return default(bool); } set { } } - + } public class ParameterBindingException : System.Management.Automation.RuntimeException { public ParameterBindingException() { } public ParameterBindingException(string message) { } public ParameterBindingException(string message, System.Exception innerException) { } - + public System.Management.Automation.InvocationInfo CommandInvocation { get { return default(System.Management.Automation.InvocationInfo); } } public string ErrorId { get { return default(string); } } public long Line { get { return default(long); } } @@ -3896,7 +3896,7 @@ public sealed class ParameterMetadata { public ParameterMetadata(System.Management.Automation.ParameterMetadata other) { } public ParameterMetadata(string name) { } public ParameterMetadata(string name, System.Type parameterType) { } - + public System.Collections.ObjectModel.Collection Aliases { get { return default(System.Collections.ObjectModel.Collection); } } public System.Collections.ObjectModel.Collection Attributes { get { return default(System.Collections.ObjectModel.Collection); } } public bool IsDynamic { get { return default(bool); } set { } } @@ -3904,7 +3904,7 @@ public ParameterMetadata(string name, System.Type parameterType) { } public System.Collections.Generic.Dictionary ParameterSets { get { return default(System.Collections.Generic.Dictionary); } } public System.Type ParameterType { get { return default(System.Type); } set { } } public bool SwitchParameter { get { return default(bool); } } - + public static System.Collections.Generic.Dictionary GetParameterMetadata(System.Type type) { return default(System.Collections.Generic.Dictionary); } } public sealed class ParameterSetMetadata { @@ -3917,7 +3917,7 @@ internal ParameterSetMetadata() { } public bool ValueFromPipeline { get { return default(bool); } set { } } public bool ValueFromPipelineByPropertyName { get { return default(bool); } set { } } public bool ValueFromRemainingArguments { get { return default(bool); } set { } } - + } public class ParentContainsErrorRecordException : System.Exception { @@ -3925,7 +3925,7 @@ public ParentContainsErrorRecordException() { } public ParentContainsErrorRecordException(System.Exception wrapperException) { } public ParentContainsErrorRecordException(string message) { } public ParentContainsErrorRecordException(string message, System.Exception innerException) { } - + public override string Message { get { return default(string); } } } public class ParseException : System.Management.Automation.RuntimeException { @@ -3933,7 +3933,7 @@ public ParseException() { } public ParseException(System.Management.Automation.Language.ParseError[] errors) { } public ParseException(string message) { } public ParseException(string message, System.Exception innerException) { } - + public System.Management.Automation.Language.ParseError[] Errors { get { return default(System.Management.Automation.Language.ParseError[]); } } public override string Message { get { return default(string); } } } @@ -3948,19 +3948,19 @@ internal PathInfo() { } public string Path { get { return default(string); } } public System.Management.Automation.ProviderInfo Provider { get { return default(System.Management.Automation.ProviderInfo); } } public string ProviderPath { get { return default(string); } } - + public override string ToString() { return default(string); } } public sealed class PathInfoStack : System.Collections.Generic.Stack { internal PathInfoStack() { } public string Name { get { return default(string); } } - + } public sealed class PathIntrinsics { internal PathIntrinsics() { } public System.Management.Automation.PathInfo CurrentFileSystemLocation { get { return default(System.Management.Automation.PathInfo); } } public System.Management.Automation.PathInfo CurrentLocation { get { return default(System.Management.Automation.PathInfo); } } - + public string Combine(string parent, string child) { return default(string); } public System.Management.Automation.PathInfo CurrentProviderLocation(string providerName) { return default(System.Management.Automation.PathInfo); } public System.Collections.ObjectModel.Collection GetResolvedProviderPathFromProviderPath(string path, string providerId) { return default(System.Collections.ObjectModel.Collection); } @@ -3990,7 +3990,7 @@ public class PipelineDepthException : System.Exception, System.Management.Automa public PipelineDepthException() { } public PipelineDepthException(string message) { } public PipelineDepthException(string message, System.Exception innerException) { } - + public int CallDepth { get { return default(int); } } public System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } } @@ -4011,10 +4011,10 @@ internal PowerShell() { } public System.Management.Automation.Runspaces.Runspace Runspace { get { return default(System.Management.Automation.Runspaces.Runspace); } set { } } public System.Management.Automation.Runspaces.RunspacePool RunspacePool { get { return default(System.Management.Automation.Runspaces.RunspacePool); } set { } } public System.Management.Automation.PSDataStreams Streams { get { return default(System.Management.Automation.PSDataStreams); } } - + // Events public event System.EventHandler InvocationStateChanged { add { } remove { } } - + public System.Management.Automation.PowerShell AddArgument(object value) { return default(System.Management.Automation.PowerShell); } public System.Management.Automation.PowerShell AddCommand(System.Management.Automation.CommandInfo commandInfo) { return default(System.Management.Automation.PowerShell); } public System.Management.Automation.PowerShell AddCommand(string cmdlet) { return default(System.Management.Automation.PowerShell); } @@ -4056,7 +4056,7 @@ public void Stop() { } public sealed class PowerShellStreams : System.IDisposable { public PowerShellStreams() { } public PowerShellStreams(System.Management.Automation.PSDataCollection pipelineInput) { } - + public System.Management.Automation.PSDataCollection DebugStream { get { return default(System.Management.Automation.PSDataCollection); } set { } } public System.Management.Automation.PSDataCollection ErrorStream { get { return default(System.Management.Automation.PSDataCollection); } set { } } public System.Management.Automation.PSDataCollection InputStream { get { return default(System.Management.Automation.PSDataCollection); } set { } } @@ -4064,7 +4064,7 @@ public PowerShellStreams(System.Management.Automation.PSDataCollection p public System.Management.Automation.PSDataCollection ProgressStream { get { return default(System.Management.Automation.PSDataCollection); } set { } } public System.Management.Automation.PSDataCollection VerboseStream { get { return default(System.Management.Automation.PSDataCollection); } set { } } public System.Management.Automation.PSDataCollection WarningStream { get { return default(System.Management.Automation.PSDataCollection); } set { } } - + public void CloseAll() { } public void Dispose() { } } @@ -4080,7 +4080,7 @@ public enum PowerShellStreamType { [System.Runtime.Serialization.DataContractAttribute] public class ProgressRecord { public ProgressRecord(int activityId, string activity, string statusDescription) { } - + public string Activity { get { return default(string); } set { } } public int ActivityId { get { return default(int); } } public string CurrentOperation { get { return default(string); } set { } } @@ -4089,7 +4089,7 @@ public ProgressRecord(int activityId, string activity, string statusDescription) public System.Management.Automation.ProgressRecordType RecordType { get { return default(System.Management.Automation.ProgressRecordType); } set { } } public int SecondsRemaining { get { return default(int); } set { } } public string StatusDescription { get { return default(string); } set { } } - + public override string ToString() { return default(string); } } public enum ProgressRecordType { @@ -4161,7 +4161,7 @@ public static class ProviderCmdlet { } public class ProviderInfo { protected ProviderInfo(System.Management.Automation.ProviderInfo providerInfo) { } - + public System.Management.Automation.Provider.ProviderCapabilities Capabilities { get { return default(System.Management.Automation.Provider.ProviderCapabilities); } } public string Description { get { return default(string); } set { } } public System.Collections.ObjectModel.Collection Drives { get { return default(System.Collections.ObjectModel.Collection); } } @@ -4171,7 +4171,7 @@ protected ProviderInfo(System.Management.Automation.ProviderInfo providerInfo) { public System.Management.Automation.PSModuleInfo Module { get { return default(System.Management.Automation.PSModuleInfo); } } public string ModuleName { get { return default(string); } } public string Name { get { return default(string); } } - + public override string ToString() { return default(string); } } public sealed class ProviderIntrinsics { @@ -4181,25 +4181,25 @@ internal ProviderIntrinsics() { } public System.Management.Automation.ItemCmdletProviderIntrinsics Item { get { return default(System.Management.Automation.ItemCmdletProviderIntrinsics); } } public System.Management.Automation.PropertyCmdletProviderIntrinsics Property { get { return default(System.Management.Automation.PropertyCmdletProviderIntrinsics); } } public System.Management.Automation.SecurityDescriptorCmdletProviderIntrinsics SecurityDescriptor { get { return default(System.Management.Automation.SecurityDescriptorCmdletProviderIntrinsics); } } - + } public class ProviderInvocationException : System.Management.Automation.RuntimeException { public ProviderInvocationException() { } public ProviderInvocationException(string message) { } public ProviderInvocationException(string message, System.Exception innerException) { } - + public override System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } public override string Message { get { return default(string); } } public System.Management.Automation.ProviderInfo ProviderInfo { get { return default(System.Management.Automation.ProviderInfo); } } - + } public class ProviderNameAmbiguousException : System.Management.Automation.ProviderNotFoundException { public ProviderNameAmbiguousException() { } public ProviderNameAmbiguousException(string message) { } public ProviderNameAmbiguousException(string message, System.Exception innerException) { } - + public System.Collections.ObjectModel.ReadOnlyCollection PossibleMatches { get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } - + } public class ProviderNotFoundException : System.Management.Automation.SessionStateException { public ProviderNotFoundException() { } @@ -4219,16 +4219,16 @@ internal ProxyCommand() { } } public class PSAdaptedProperty : System.Management.Automation.PSProperty { public PSAdaptedProperty(string name, object tag) { } - + public object BaseObject { get { return default(object); } } public object Tag { get { return default(object); } } - + public override System.Management.Automation.PSMemberInfo Copy() { return default(System.Management.Automation.PSMemberInfo); } } public class PSAliasProperty : System.Management.Automation.PSPropertyInfo { public PSAliasProperty(string name, string referencedMemberName) { } public PSAliasProperty(string name, string referencedMemberName, System.Type conversionType) { } - + public System.Type ConversionType { get { return default(System.Type); } } public override bool IsGettable { get { return default(bool); } } public override bool IsSettable { get { return default(bool); } } @@ -4236,7 +4236,7 @@ public PSAliasProperty(string name, string referencedMemberName, System.Type con public string ReferencedMemberName { get { return default(string); } } public override string TypeNameOfValue { get { return default(string); } } public override object Value { get { return default(object); } set { } } - + public override System.Management.Automation.PSMemberInfo Copy() { return default(System.Management.Automation.PSMemberInfo); } public override string ToString() { return default(string); } } @@ -4245,7 +4245,7 @@ public PSArgumentException() { } public PSArgumentException(string message) { } public PSArgumentException(string message, System.Exception innerException) { } public PSArgumentException(string message, string paramName) { } - + public System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } public override string Message { get { return default(string); } } } @@ -4254,7 +4254,7 @@ public PSArgumentNullException() { } public PSArgumentNullException(string paramName) { } public PSArgumentNullException(string message, System.Exception innerException) { } public PSArgumentNullException(string paramName, string message) { } - + public System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } public override string Message { get { return default(string); } } } @@ -4263,7 +4263,7 @@ public PSArgumentOutOfRangeException() { } public PSArgumentOutOfRangeException(string paramName) { } public PSArgumentOutOfRangeException(string message, System.Exception innerException) { } public PSArgumentOutOfRangeException(string paramName, object actualValue, string message) { } - + public System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } } public sealed class PSChildJobProxy : System.Management.Automation.Job2 { @@ -4271,10 +4271,10 @@ internal PSChildJobProxy() { } public override bool HasMoreData { get { return default(bool); } } public override string Location { get { return default(string); } } public override string StatusMessage { get { return default(string); } } - + // Events public event System.EventHandler JobDataAdded { add { } remove { } } - + protected override void Dispose(bool disposing) { } public override void ResumeJob() { } public override void ResumeJobAsync() { } @@ -4293,7 +4293,7 @@ public override void UnblockJobAsync() { } } public abstract class PSCmdlet : System.Management.Automation.Cmdlet { protected PSCmdlet() { } - + public System.Management.Automation.PSEventManager Events { get { return default(System.Management.Automation.PSEventManager); } } public System.Management.Automation.Host.PSHost Host { get { return default(System.Management.Automation.Host.PSHost); } } public System.Management.Automation.CommandInvocationIntrinsics InvokeCommand { get { return default(System.Management.Automation.CommandInvocationIntrinsics); } } @@ -4304,7 +4304,7 @@ protected PSCmdlet() { } public System.Management.Automation.PagingParameters PagingParameters { get { return default(System.Management.Automation.PagingParameters); } } public string ParameterSetName { get { return default(string); } } public System.Management.Automation.SessionState SessionState { get { return default(System.Management.Automation.SessionState); } } - + public System.Management.Automation.PathInfo CurrentProviderLocation(string providerId) { return default(System.Management.Automation.PathInfo); } public System.Collections.ObjectModel.Collection GetResolvedProviderPathFromPSPath(string path, out System.Management.Automation.ProviderInfo provider) { provider = default(System.Management.Automation.ProviderInfo); return default(System.Collections.ObjectModel.Collection); } public string GetUnresolvedProviderPathFromPSPath(string path) { return default(string); } @@ -4313,12 +4313,12 @@ protected PSCmdlet() { } } public class PSCodeMethod : System.Management.Automation.PSMethodInfo { public PSCodeMethod(string name, System.Reflection.MethodInfo codeReference) { } - + public System.Reflection.MethodInfo CodeReference { get { return default(System.Reflection.MethodInfo); } } public override System.Management.Automation.PSMemberTypes MemberType { get { return default(System.Management.Automation.PSMemberTypes); } } public override System.Collections.ObjectModel.Collection OverloadDefinitions { get { return default(System.Collections.ObjectModel.Collection); } } public override string TypeNameOfValue { get { return default(string); } } - + public override System.Management.Automation.PSMemberInfo Copy() { return default(System.Management.Automation.PSMemberInfo); } public override object Invoke(params object[] arguments) { return default(object); } public override string ToString() { return default(string); } @@ -4326,7 +4326,7 @@ public PSCodeMethod(string name, System.Reflection.MethodInfo codeReference) { } public class PSCodeProperty : System.Management.Automation.PSPropertyInfo { public PSCodeProperty(string name, System.Reflection.MethodInfo getterCodeReference) { } public PSCodeProperty(string name, System.Reflection.MethodInfo getterCodeReference, System.Reflection.MethodInfo setterCodeReference) { } - + public System.Reflection.MethodInfo GetterCodeReference { get { return default(System.Reflection.MethodInfo); } } public override bool IsGettable { get { return default(bool); } } public override bool IsSettable { get { return default(bool); } } @@ -4334,15 +4334,15 @@ public PSCodeProperty(string name, System.Reflection.MethodInfo getterCodeRefere public System.Reflection.MethodInfo SetterCodeReference { get { return default(System.Reflection.MethodInfo); } } public override string TypeNameOfValue { get { return default(string); } } public override object Value { get { return default(object); } set { } } - + public override System.Management.Automation.PSMemberInfo Copy() { return default(System.Management.Automation.PSMemberInfo); } public override string ToString() { return default(string); } } public sealed class PSCommand { public PSCommand() { } - + public System.Management.Automation.Runspaces.CommandCollection Commands { get { return default(System.Management.Automation.Runspaces.CommandCollection); } } - + public System.Management.Automation.PSCommand AddArgument(object value) { return default(System.Management.Automation.PSCommand); } public System.Management.Automation.PSCommand AddCommand(System.Management.Automation.Runspaces.Command command) { return default(System.Management.Automation.PSCommand); } public System.Management.Automation.PSCommand AddCommand(string command) { return default(System.Management.Automation.PSCommand); } @@ -4361,11 +4361,11 @@ protected PSControl() { } public sealed class PSCredential { public PSCredential(string userName, System.Security.SecureString password) { } - + public static System.Management.Automation.PSCredential Empty { get { return default(System.Management.Automation.PSCredential); } } public System.Security.SecureString Password { get { return default(System.Security.SecureString); } } public string UserName { get { return default(string); } } - + public System.Net.NetworkCredential GetNetworkCredential() { return default(System.Net.NetworkCredential); } public static explicit operator System.Net.NetworkCredential (System.Management.Automation.PSCredential credential) { return default(System.Net.NetworkCredential); } } @@ -4391,7 +4391,7 @@ public class PSDataCollection : System.Collections.Generic.ICollection, Sy public PSDataCollection() { } public PSDataCollection(System.Collections.Generic.IEnumerable items) { } public PSDataCollection(int capacity) { } - + public bool BlockingEnumerator { get { return default(bool); } set { } } public int Count { get { return default(int); } } public int DataAddedCount { get { return default(int); } set { } } @@ -4406,12 +4406,12 @@ public PSDataCollection(int capacity) { } bool System.Collections.IList.IsFixedSize { get { return default(bool); } } bool System.Collections.IList.IsReadOnly { get { return default(bool); } } object System.Collections.IList.this[int index] { get { return default(object); } set { } } - + // Events public event System.EventHandler Completed { add { } remove { } } public event System.EventHandler DataAdded { add { } remove { } } public event System.EventHandler DataAdding { add { } remove { } } - + public void Add(T item) { } public void Clear() { } public void Complete() { } @@ -4449,29 +4449,29 @@ internal PSDataStreams() { } public System.Management.Automation.PSDataCollection Progress { get { return default(System.Management.Automation.PSDataCollection); } set { } } public System.Management.Automation.PSDataCollection Verbose { get { return default(System.Management.Automation.PSDataCollection); } set { } } public System.Management.Automation.PSDataCollection Warning { get { return default(System.Management.Automation.PSDataCollection); } set { } } - + public void ClearStreams() { } } public class PSDebugContext { internal PSDebugContext() { } public System.Management.Automation.Breakpoint[] Breakpoints { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Breakpoint[]); } } public System.Management.Automation.InvocationInfo InvocationInfo { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.InvocationInfo); } } - + } [System.AttributeUsageAttribute((AttributeTargets)384)] public sealed class PSDefaultValueAttribute : System.Management.Automation.Internal.ParsingBaseAttribute { public PSDefaultValueAttribute() { } - + public string Help { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public object Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(object); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } - + } public class PSDriveInfo : System.IComparable { protected PSDriveInfo(System.Management.Automation.PSDriveInfo driveInfo) { } public PSDriveInfo(string name, System.Management.Automation.ProviderInfo provider, string root, string description, System.Management.Automation.PSCredential credential) { } public PSDriveInfo(string name, System.Management.Automation.ProviderInfo provider, string root, string description, System.Management.Automation.PSCredential credential, bool persist) { } public PSDriveInfo(string name, System.Management.Automation.ProviderInfo provider, string root, string description, System.Management.Automation.PSCredential credential, string displayRoot) { } - + public System.Management.Automation.PSCredential Credential { get { return default(System.Management.Automation.PSCredential); } } public string CurrentLocation { get { return default(string); } set { } } public string Description { get { return default(string); } set { } } @@ -4479,7 +4479,7 @@ public PSDriveInfo(string name, System.Management.Automation.ProviderInfo provid public string Name { get { return default(string); } } public System.Management.Automation.ProviderInfo Provider { get { return default(System.Management.Automation.ProviderInfo); } } public string Root { get { return default(string); } } - + public int CompareTo(System.Management.Automation.PSDriveInfo drive) { return default(int); } public int CompareTo(object obj) { return default(int); } public bool Equals(System.Management.Automation.PSDriveInfo drive) { return default(bool); } @@ -4496,7 +4496,7 @@ internal PSDynamicMember() { } public override System.Management.Automation.PSMemberTypes MemberType { get { return default(System.Management.Automation.PSMemberTypes); } } public override string TypeNameOfValue { get { return default(string); } } public override object Value { get { return default(object); } set { } } - + public override System.Management.Automation.PSMemberInfo Copy() { return default(System.Management.Automation.PSMemberInfo); } public override string ToString() { return default(string); } } @@ -4510,7 +4510,7 @@ internal PSEvent() { } public override System.Management.Automation.PSMemberTypes MemberType { get { return default(System.Management.Automation.PSMemberTypes); } } public override string TypeNameOfValue { get { return default(string); } } public sealed override object Value { get { return default(object); } set { } } - + public override System.Management.Automation.PSMemberInfo Copy() { return default(System.Management.Automation.PSMemberInfo); } public override string ToString() { return default(string); } } @@ -4525,18 +4525,18 @@ internal PSEventArgs() { } public System.EventArgs SourceEventArgs { get { return default(System.EventArgs); } } public string SourceIdentifier { get { return default(string); } } public System.DateTime TimeGenerated { get { return default(System.DateTime); } } - + } public class PSEventArgsCollection : System.Collections.Generic.IEnumerable, System.Collections.IEnumerable { public PSEventArgsCollection() { } - + public int Count { get { return default(int); } } public System.Management.Automation.PSEventArgs this[int index] { get { return default(System.Management.Automation.PSEventArgs); } } public object SyncRoot { get { return default(object); } } - + // Events public event System.Management.Automation.PSEventReceivedEventHandler PSEventReceived { add { } remove { } } - + public System.Collections.Generic.IEnumerator GetEnumerator() { return default(System.Collections.Generic.IEnumerator); } public void RemoveAt(int index) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { return default(System.Collections.IEnumerator); } @@ -4546,26 +4546,26 @@ public class PSEventHandler { protected System.Management.Automation.PSObject extraData; protected object sender; protected string sourceIdentifier; - + public PSEventHandler() { } public PSEventHandler(System.Management.Automation.PSEventManager eventManager, object sender, string sourceIdentifier, System.Management.Automation.PSObject extraData) { } } public class PSEventJob : System.Management.Automation.Job { public PSEventJob(System.Management.Automation.PSEventManager eventManager, System.Management.Automation.PSEventSubscriber subscriber, System.Management.Automation.ScriptBlock action, string name) { } - + public override bool HasMoreData { get { return default(bool); } } public override string Location { get { return default(string); } } public System.Management.Automation.PSModuleInfo Module { get { return default(System.Management.Automation.PSModuleInfo); } } public override string StatusMessage { get { return default(string); } } - + public override void StopJob() { } } public abstract class PSEventManager { protected PSEventManager() { } - + public System.Management.Automation.PSEventArgsCollection ReceivedEvents { get { return default(System.Management.Automation.PSEventArgsCollection); } } public abstract System.Collections.Generic.List Subscribers { get; } - + protected abstract System.Management.Automation.PSEventArgs CreateEvent(string sourceIdentifier, object sender, object[] args, System.Management.Automation.PSObject extraData); public System.Management.Automation.PSEventArgs GenerateEvent(string sourceIdentifier, object sender, object[] args, System.Management.Automation.PSObject extraData) { return default(System.Management.Automation.PSEventArgs); } public abstract System.Collections.Generic.IEnumerable GetEventSubscribers(string sourceIdentifier); @@ -4589,36 +4589,36 @@ internal PSEventSubscriber() { } public object SourceObject { get { return default(object); } } public int SubscriptionId { get { return default(int); } set { } } public bool SupportEvent { get { return default(bool); } } - + // Events public event System.Management.Automation.PSEventUnsubscribedEventHandler Unsubscribed { add { } remove { } } - + public bool Equals(System.Management.Automation.PSEventSubscriber other) { return default(bool); } public override int GetHashCode() { return default(int); } } public class PSEventUnsubscribedEventArgs : System.EventArgs { internal PSEventUnsubscribedEventArgs() { } public System.Management.Automation.PSEventSubscriber EventSubscriber { get { return default(System.Management.Automation.PSEventSubscriber); } } - + } public delegate void PSEventUnsubscribedEventHandler(object sender, System.Management.Automation.PSEventUnsubscribedEventArgs e); public class PSInvalidCastException : System.InvalidCastException, System.Management.Automation.IContainsErrorRecord { public PSInvalidCastException() { } public PSInvalidCastException(string message) { } public PSInvalidCastException(string message, System.Exception innerException) { } - + public System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } } public class PSInvalidOperationException : System.InvalidOperationException, System.Management.Automation.IContainsErrorRecord { public PSInvalidOperationException() { } public PSInvalidOperationException(string message) { } public PSInvalidOperationException(string message, System.Exception innerException) { } - + public System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } } public sealed class PSInvocationSettings { public PSInvocationSettings() { } - + public bool AddToHistory { get { return default(bool); } set { } } #if COM_APARTMENT_STATE public System.Threading.ApartmentState ApartmentState { get { return default(System.Threading.ApartmentState); } set { } } @@ -4627,7 +4627,7 @@ public PSInvocationSettings() { } public bool FlowImpersonationPolicy { get { return default(bool); } set { } } public System.Management.Automation.Host.PSHost Host { get { return default(System.Management.Automation.Host.PSHost); } set { } } public System.Management.Automation.RemoteStreamOptions RemoteStreamOptions { get { return default(System.Management.Automation.RemoteStreamOptions); } set { } } - + } public enum PSInvocationState { Completed = 4, @@ -4641,13 +4641,13 @@ public enum PSInvocationState { public sealed class PSInvocationStateChangedEventArgs : System.EventArgs { internal PSInvocationStateChangedEventArgs() { } public System.Management.Automation.PSInvocationStateInfo InvocationStateInfo { get { return default(System.Management.Automation.PSInvocationStateInfo); } } - + } public sealed class PSInvocationStateInfo { internal PSInvocationStateInfo() { } public System.Exception Reason { get { return default(System.Exception); } } public System.Management.Automation.PSInvocationState State { get { return default(System.Management.Automation.PSInvocationState); } } - + } public sealed class PSJobProxy : System.Management.Automation.Job2 { internal PSJobProxy() { } @@ -4658,10 +4658,10 @@ internal PSJobProxy() { } public System.Management.Automation.Runspaces.Runspace Runspace { get { return default(System.Management.Automation.Runspaces.Runspace); } set { } } public System.Management.Automation.Runspaces.RunspacePool RunspacePool { get { return default(System.Management.Automation.Runspaces.RunspacePool); } set { } } public override string StatusMessage { get { return default(string); } } - + // Events public event System.EventHandler RemoveJobCompleted { add { } remove { } } - + public static System.Collections.Generic.ICollection Create(System.Management.Automation.Runspaces.Runspace runspace) { return default(System.Collections.Generic.ICollection); } public static System.Collections.Generic.ICollection Create(System.Management.Automation.Runspaces.Runspace runspace, System.Collections.Hashtable filter) { return default(System.Collections.Generic.ICollection); } public static System.Collections.Generic.ICollection Create(System.Management.Automation.Runspaces.Runspace runspace, System.Collections.Hashtable filter, bool receiveImmediately) { return default(System.Collections.Generic.ICollection); } @@ -4707,11 +4707,11 @@ public PSListModifier() { } public PSListModifier(System.Collections.Hashtable hash) { } public PSListModifier(System.Collections.ObjectModel.Collection removeItems, System.Collections.ObjectModel.Collection addItems) { } public PSListModifier(object replacementItems) { } - + public System.Collections.ObjectModel.Collection Add { get { return default(System.Collections.ObjectModel.Collection); } } public System.Collections.ObjectModel.Collection Remove { get { return default(System.Collections.ObjectModel.Collection); } } public System.Collections.ObjectModel.Collection Replace { get { return default(System.Collections.ObjectModel.Collection); } } - + public void ApplyTo(System.Collections.IList collectionToUpdate) { } public void ApplyTo(object collectionToUpdate) { } } @@ -4723,21 +4723,21 @@ public PSListModifier(object replacementItems) { } } public abstract class PSMemberInfo { protected PSMemberInfo() { } - + public bool IsInstance { get { return default(bool); } } public abstract System.Management.Automation.PSMemberTypes MemberType { get; } public string Name { get { return default(string); } } public abstract string TypeNameOfValue { get; } public abstract object Value { get; set; } - + public abstract System.Management.Automation.PSMemberInfo Copy(); protected void SetMemberName(string name) { } } public abstract class PSMemberInfoCollection : System.Collections.Generic.IEnumerable, System.Collections.IEnumerable where T : System.Management.Automation.PSMemberInfo { protected PSMemberInfoCollection() { } - + public abstract T this[string name] { get; } - + public abstract void Add(T member); public abstract void Add(T member, bool preValidated); public abstract System.Collections.Generic.IEnumerator GetEnumerator(); @@ -4749,7 +4749,7 @@ protected PSMemberInfoCollection() { } public class PSMemberSet : System.Management.Automation.PSMemberInfo { public PSMemberSet(string name) { } public PSMemberSet(string name, System.Collections.Generic.IEnumerable members) { } - + public bool InheritMembers { get { return default(bool); } } public System.Management.Automation.PSMemberInfoCollection Members { get { return default(System.Management.Automation.PSMemberInfoCollection); } } public override System.Management.Automation.PSMemberTypes MemberType { get { return default(System.Management.Automation.PSMemberTypes); } } @@ -4757,7 +4757,7 @@ public PSMemberSet(string name, System.Collections.Generic.IEnumerable Properties { get { return default(System.Management.Automation.PSMemberInfoCollection); } } public override string TypeNameOfValue { get { return default(string); } } public override object Value { get { return default(object); } set { } } - + public override System.Management.Automation.PSMemberInfo Copy() { return default(System.Management.Automation.PSMemberInfo); } public override string ToString() { return default(string); } } @@ -4794,17 +4794,17 @@ internal PSMethod() { } public override System.Management.Automation.PSMemberTypes MemberType { get { return default(System.Management.Automation.PSMemberTypes); } } public override System.Collections.ObjectModel.Collection OverloadDefinitions { get { return default(System.Collections.ObjectModel.Collection); } } public override string TypeNameOfValue { get { return default(string); } } - + public override System.Management.Automation.PSMemberInfo Copy() { return default(System.Management.Automation.PSMemberInfo); } public override object Invoke(params object[] arguments) { return default(object); } public override string ToString() { return default(string); } } public abstract class PSMethodInfo : System.Management.Automation.PSMemberInfo { protected PSMethodInfo() { } - + public abstract System.Collections.ObjectModel.Collection OverloadDefinitions { get; } public sealed override object Value { get { return default(object); } set { } } - + public abstract object Invoke(params object[] arguments); } public enum PSModuleAutoLoadingPreference { @@ -4815,7 +4815,7 @@ public enum PSModuleAutoLoadingPreference { public sealed class PSModuleInfo { public PSModuleInfo(bool linkToGlobal) { } public PSModuleInfo(System.Management.Automation.ScriptBlock scriptBlock) { } - + public System.Management.Automation.ModuleAccessMode AccessMode { get { return default(System.Management.Automation.ModuleAccessMode); } set { } } public string Author { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } public System.Version ClrVersion { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Version); } } @@ -4855,7 +4855,7 @@ public PSModuleInfo(System.Management.Automation.ScriptBlock scriptBlock) { } public System.Management.Automation.SessionState SessionState { get { return default(System.Management.Automation.SessionState); } set { } } public static bool UseAppDomainLevelModuleCache { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(bool); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public System.Version Version { get { return default(System.Version); } } - + public System.Management.Automation.PSObject AsCustomObject() { return default(System.Management.Automation.PSObject); } public static void ClearAppDomainLevelModulePathCache() { } public System.Management.Automation.PSModuleInfo Clone() { return default(System.Management.Automation.PSModuleInfo); } @@ -4865,13 +4865,13 @@ public static void ClearAppDomainLevelModulePathCache() { } } public class PSNoteProperty : System.Management.Automation.PSPropertyInfo { public PSNoteProperty(string name, object value) { } - + public override bool IsGettable { get { return default(bool); } } public override bool IsSettable { get { return default(bool); } } public override System.Management.Automation.PSMemberTypes MemberType { get { return default(System.Management.Automation.PSMemberTypes); } } public override string TypeNameOfValue { get { return default(string); } } public override object Value { get { return default(object); } set { } } - + public override System.Management.Automation.PSMemberInfo Copy() { return default(System.Management.Automation.PSMemberInfo); } public override string ToString() { return default(string); } } @@ -4879,14 +4879,14 @@ public class PSNotImplementedException : System.NotImplementedException, System. public PSNotImplementedException() { } public PSNotImplementedException(string message) { } public PSNotImplementedException(string message, System.Exception innerException) { } - + public System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } } public class PSNotSupportedException : System.NotSupportedException, System.Management.Automation.IContainsErrorRecord { public PSNotSupportedException() { } public PSNotSupportedException(string message) { } public PSNotSupportedException(string message, System.Exception innerException) { } - + public System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } } #if COMPONENT_MODEL @@ -4896,17 +4896,17 @@ public class PSObject : System.Dynamic.IDynamicMetaObjectProvider, System.ICompa public const string AdaptedMemberSetName = "psadapted"; public const string BaseObjectMemberSetName = "psbase"; public const string ExtendedMemberSetName = "psextended"; - + public PSObject() { } public PSObject(object obj) { } - + public object BaseObject { get { return default(object); } } public object ImmediateBaseObject { get { return default(object); } } public System.Management.Automation.PSMemberInfoCollection Members { get { return default(System.Management.Automation.PSMemberInfoCollection); } } public System.Management.Automation.PSMemberInfoCollection Methods { get { return default(System.Management.Automation.PSMemberInfoCollection); } } public System.Management.Automation.PSMemberInfoCollection Properties { get { return default(System.Management.Automation.PSMemberInfoCollection); } } public System.Collections.ObjectModel.Collection TypeNames { get { return default(System.Collections.ObjectModel.Collection); } } - + public static System.Management.Automation.PSObject AsPSObject(object obj) { return default(System.Management.Automation.PSObject); } public int CompareTo(object obj) { return default(int); } public virtual System.Management.Automation.PSObject Copy() { return default(System.Management.Automation.PSObject); } @@ -4925,7 +4925,7 @@ public class PSObjectDisposedException : System.ObjectDisposedException, System. public PSObjectDisposedException(string objectName) : base(objectName) { } public PSObjectDisposedException(string message, System.Exception innerException) : base(message, innerException) { } public PSObjectDisposedException(string objectName, string message) : base (objectName, message) { } - + public System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } } #if COMPONENT_MODEL @@ -4934,7 +4934,7 @@ public class PSObjectPropertyDescriptor : System.ComponentModel.PropertyDescript public override System.Type ComponentType { get { return default(System.Type); } } public override bool IsReadOnly { get { return default(bool); } } public override System.Type PropertyType { get { return default(System.Type); } } - + public override bool CanResetValue(object component) { return default(bool); } public override object GetValue(object component) { return default(object); } public override void ResetValue(object component) { } @@ -4943,22 +4943,22 @@ public override void SetValue(object component, object value) { } } public class PSObjectTypeDescriptionProvider : System.ComponentModel.TypeDescriptionProvider { public PSObjectTypeDescriptionProvider() { } - + // Events public event System.EventHandler GettingValueException { add { } remove { } } public event System.EventHandler SettingValueException { add { } remove { } } - + public override System.ComponentModel.ICustomTypeDescriptor GetTypeDescriptor(System.Type objectType, object instance) { return default(System.ComponentModel.ICustomTypeDescriptor); } } public class PSObjectTypeDescriptor : System.ComponentModel.CustomTypeDescriptor { public PSObjectTypeDescriptor(System.Management.Automation.PSObject instance) { } - + public System.Management.Automation.PSObject Instance { get { return default(System.Management.Automation.PSObject); } } - + // Events public event System.EventHandler GettingValueException { add { } remove { } } public event System.EventHandler SettingValueException { add { } remove { } } - + public override bool Equals(object obj) { return default(bool); } public override System.ComponentModel.AttributeCollection GetAttributes() { return default(System.ComponentModel.AttributeCollection); } public override string GetClassName() { return default(string); } @@ -4982,7 +4982,7 @@ internal PSParameterizedProperty() { } public override System.Management.Automation.PSMemberTypes MemberType { get { return default(System.Management.Automation.PSMemberTypes); } } public override System.Collections.ObjectModel.Collection OverloadDefinitions { get { return default(System.Collections.ObjectModel.Collection); } } public override string TypeNameOfValue { get { return default(string); } } - + public override System.Management.Automation.PSMemberInfo Copy() { return default(System.Management.Automation.PSMemberInfo); } public override object Invoke(params object[] arguments) { return default(object); } public void InvokeSet(object valueToSet, params object[] arguments) { } @@ -4993,7 +4993,7 @@ public sealed class PSParseError { internal PSParseError() { } public string Message { get { return default(string); } } public System.Management.Automation.PSToken Token { get { return default(System.Management.Automation.PSToken); } } - + } public sealed class PSParser { internal PSParser() { } @@ -5004,10 +5004,10 @@ internal PSParser() { } public sealed class PSPrimitiveDictionary : System.Collections.Hashtable { public PSPrimitiveDictionary() { } public PSPrimitiveDictionary(System.Collections.Hashtable other) { } - + public override object this[object key] { get { return default(object); } set { } } public object this[string key] { get { return default(object); } set { } } - + public override void Add(object key, object value) { } public void Add(string key, bool value) { } public void Add(string key, bool[] value) { } @@ -5056,13 +5056,13 @@ internal PSProperty() { } public override System.Management.Automation.PSMemberTypes MemberType { get { return default(System.Management.Automation.PSMemberTypes); } } public override string TypeNameOfValue { get { return default(string); } } public override object Value { get { return default(object); } set { } } - + public override System.Management.Automation.PSMemberInfo Copy() { return default(System.Management.Automation.PSMemberInfo); } public override string ToString() { return default(string); } } public abstract class PSPropertyAdapter { protected PSPropertyAdapter() { } - + public abstract System.Collections.ObjectModel.Collection GetProperties(object baseObject); public abstract System.Management.Automation.PSAdaptedProperty GetProperty(object baseObject, string propertyName); public abstract string GetPropertyTypeName(System.Management.Automation.PSAdaptedProperty adaptedProperty); @@ -5074,36 +5074,36 @@ protected PSPropertyAdapter() { } } public abstract class PSPropertyInfo : System.Management.Automation.PSMemberInfo { protected PSPropertyInfo() { } - + public abstract bool IsGettable { get; } public abstract bool IsSettable { get; } - + } public class PSPropertySet : System.Management.Automation.PSMemberInfo { public PSPropertySet(string name, System.Collections.Generic.IEnumerable referencedPropertyNames) { } - + public override System.Management.Automation.PSMemberTypes MemberType { get { return default(System.Management.Automation.PSMemberTypes); } } public System.Collections.ObjectModel.Collection ReferencedPropertyNames { get { return default(System.Collections.ObjectModel.Collection); } } public override string TypeNameOfValue { get { return default(string); } } public override object Value { get { return default(object); } set { } } - + public override System.Management.Automation.PSMemberInfo Copy() { return default(System.Management.Automation.PSMemberInfo); } public override string ToString() { return default(string); } } public class PSReference { public PSReference(object value) { } - + public object Value { get { return default(object); } set { } } - + } public class PSScriptMethod : System.Management.Automation.PSMethodInfo { public PSScriptMethod(string name, System.Management.Automation.ScriptBlock script) { } - + public override System.Management.Automation.PSMemberTypes MemberType { get { return default(System.Management.Automation.PSMemberTypes); } } public override System.Collections.ObjectModel.Collection OverloadDefinitions { get { return default(System.Collections.ObjectModel.Collection); } } public System.Management.Automation.ScriptBlock Script { get { return default(System.Management.Automation.ScriptBlock); } } public override string TypeNameOfValue { get { return default(string); } } - + public override System.Management.Automation.PSMemberInfo Copy() { return default(System.Management.Automation.PSMemberInfo); } public override object Invoke(params object[] arguments) { return default(object); } public override string ToString() { return default(string); } @@ -5111,7 +5111,7 @@ public PSScriptMethod(string name, System.Management.Automation.ScriptBlock scri public class PSScriptProperty : System.Management.Automation.PSPropertyInfo { public PSScriptProperty(string name, System.Management.Automation.ScriptBlock getterScript) { } public PSScriptProperty(string name, System.Management.Automation.ScriptBlock getterScript, System.Management.Automation.ScriptBlock setterScript) { } - + public System.Management.Automation.ScriptBlock GetterScript { get { return default(System.Management.Automation.ScriptBlock); } } public override bool IsGettable { get { return default(bool); } } public override bool IsSettable { get { return default(bool); } } @@ -5119,7 +5119,7 @@ public PSScriptProperty(string name, System.Management.Automation.ScriptBlock ge public System.Management.Automation.ScriptBlock SetterScript { get { return default(System.Management.Automation.ScriptBlock); } } public override string TypeNameOfValue { get { return default(string); } } public override object Value { get { return default(object); } set { } } - + public override System.Management.Automation.PSMemberInfo Copy() { return default(System.Management.Automation.PSMemberInfo); } public override string ToString() { return default(string); } } @@ -5127,10 +5127,10 @@ public class PSSecurityException : System.Management.Automation.RuntimeException public PSSecurityException() { } public PSSecurityException(string message) { } public PSSecurityException(string message, System.Exception innerException) { } - + public override System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } public override string Message { get { return default(string); } } - + } public class PSSerializer { internal PSSerializer() { } @@ -5141,7 +5141,7 @@ internal PSSerializer() { } } public abstract class PSSessionTypeOption { protected PSSessionTypeOption() { } - + protected internal virtual System.Management.Automation.PSSessionTypeOption ConstructObjectFromPrivateData(string privateData) { return default(System.Management.Automation.PSSessionTypeOption); } protected internal virtual string ConstructPrivateData() { return default(string); } protected internal virtual void CopyUpdatedValuesFrom(System.Management.Automation.PSSessionTypeOption updated) { } @@ -5157,7 +5157,7 @@ internal PSToken() { } public int StartColumn { get { return default(int); } } public int StartLine { get { return default(int); } } public System.Management.Automation.PSTokenType Type { get { return default(System.Management.Automation.PSTokenType); } } - + public static System.Management.Automation.PSTokenType GetPSTokenType(System.Management.Automation.Language.Token token) { return default(System.Management.Automation.PSTokenType); } } public enum PSTokenType { @@ -5191,7 +5191,7 @@ internal PSTraceSource() { } public string Name { get { return default(string); } } public System.Management.Automation.PSTraceSourceOptions Options { get { return default(System.Management.Automation.PSTraceSourceOptions); } set { } } public System.Diagnostics.SourceSwitch Switch { get { return default(System.Diagnostics.SourceSwitch); } set { } } - + } [System.FlagsAttribute] public enum PSTraceSourceOptions { @@ -5222,7 +5222,7 @@ internal PSTransaction() { } public System.Management.Automation.RollbackSeverity RollbackPreference { get { return default(System.Management.Automation.RollbackSeverity); } } public System.Management.Automation.PSTransactionStatus Status { get { return default(System.Management.Automation.PSTransactionStatus); } } public int SubscriberCount { get { return default(int); } set { } } - + public void Dispose() { } public void Dispose(bool disposing) { } ~PSTransaction() { } @@ -5240,12 +5240,12 @@ public enum PSTransactionStatus { #endif public abstract class PSTransportOption { protected PSTransportOption() { } - + protected internal virtual void LoadFromDefaults(System.Management.Automation.Runspaces.PSSessionType sessionType, bool keepAssigned) { } } public abstract class PSTypeConverter { protected PSTypeConverter() { } - + public virtual bool CanConvertFrom(System.Management.Automation.PSObject sourceValue, System.Type destinationType) { return default(bool); } public abstract bool CanConvertFrom(object sourceValue, System.Type destinationType); public virtual bool CanConvertTo(System.Management.Automation.PSObject sourceValue, System.Type destinationType) { return default(bool); } @@ -5258,25 +5258,25 @@ protected PSTypeConverter() { } public class PSTypeName { public PSTypeName(string name) { } public PSTypeName(System.Type type) { } - + public string Name { get { return default(string); } } public System.Type Type { get { return default(System.Type); } } - + public override string ToString() { return default(string); } } [System.AttributeUsageAttribute((AttributeTargets)384, AllowMultiple=false)] public class PSTypeNameAttribute : System.Attribute { public PSTypeNameAttribute(string psTypeName) { } - + public string PSTypeName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } - + } public class PSVariable { public PSVariable(string name) { } public PSVariable(string name, object value) { } public PSVariable(string name, object value, System.Management.Automation.ScopedItemOptions options) { } public PSVariable(string name, object value, System.Management.Automation.ScopedItemOptions options, System.Collections.ObjectModel.Collection attributes) { } - + public System.Collections.ObjectModel.Collection Attributes { get { return default(System.Collections.ObjectModel.Collection); } } public virtual string Description { get { return default(string); } set { } } public System.Management.Automation.PSModuleInfo Module { get { return default(System.Management.Automation.PSModuleInfo); } } @@ -5285,7 +5285,7 @@ public PSVariable(string name, object value, System.Management.Automation.Scoped public virtual System.Management.Automation.ScopedItemOptions Options { get { return default(System.Management.Automation.ScopedItemOptions); } set { } } public virtual object Value { get { return default(object); } set { } } public System.Management.Automation.SessionStateEntryVisibility Visibility { get { return default(System.Management.Automation.SessionStateEntryVisibility); } set { } } - + public virtual bool IsValidValue(object value) { return default(bool); } } public sealed class PSVariableIntrinsics { @@ -5300,13 +5300,13 @@ public void Set(string name, object value) { } } public class PSVariableProperty : System.Management.Automation.PSNoteProperty { public PSVariableProperty(System.Management.Automation.PSVariable variable) : base (default(string), default(object)) { } - + public override bool IsGettable { get { return default(bool); } } public override bool IsSettable { get { return default(bool); } } public override System.Management.Automation.PSMemberTypes MemberType { get { return default(System.Management.Automation.PSMemberTypes); } } public override string TypeNameOfValue { get { return default(string); } } public override object Value { get { return default(object); } set { } } - + public override System.Management.Automation.PSMemberInfo Copy() { return default(System.Management.Automation.PSMemberInfo); } public override string ToString() { return default(string); } } @@ -5315,7 +5315,7 @@ internal ReadOnlyPSMemberInfoCollection() { } public int Count { get { return default(int); } } public T this[int index] { get { return default(T); } } public T this[string name] { get { return default(T); } } - + public virtual System.Collections.Generic.IEnumerator GetEnumerator() { return default(System.Collections.Generic.IEnumerator); } public System.Management.Automation.ReadOnlyPSMemberInfoCollection Match(string name) { return default(System.Management.Automation.ReadOnlyPSMemberInfoCollection); } public System.Management.Automation.ReadOnlyPSMemberInfoCollection Match(string name, System.Management.Automation.PSMemberTypes memberTypes) { return default(System.Management.Automation.ReadOnlyPSMemberInfoCollection); } @@ -5330,17 +5330,17 @@ public class RemoteCommandInfo : System.Management.Automation.CommandInfo { internal RemoteCommandInfo() { } public override string Definition { get { return default(string); } } public override System.Collections.ObjectModel.ReadOnlyCollection OutputType { get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } - + } public class RemoteException : System.Management.Automation.RuntimeException { public RemoteException() { } public RemoteException(string message) { } public RemoteException(string message, System.Exception innerException) { } - + public override System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } public System.Management.Automation.PSObject SerializedRemoteException { get { return default(System.Management.Automation.PSObject); } } public System.Management.Automation.PSObject SerializedRemoteInvocationInfo { get { return default(System.Management.Automation.PSObject); } } - + } [System.FlagsAttribute] public enum RemoteStreamOptions { @@ -5363,7 +5363,7 @@ public enum RemotingCapability { } public abstract class Repository where T : class { protected Repository(string identifier) { } - + public void Add(T item) { } public T GetItem(System.Guid instanceId) { return default(T); } public System.Collections.Generic.List GetItems() { return default(System.Collections.Generic.List); } @@ -5385,7 +5385,7 @@ public RunspaceInvoke() { } public RunspaceInvoke(System.Management.Automation.Runspaces.Runspace runspace) { } public RunspaceInvoke(System.Management.Automation.Runspaces.RunspaceConfiguration runspaceConfiguration) { } public RunspaceInvoke(string consoleFilePath) { } - + public void Dispose() { } protected virtual void Dispose(bool disposing) { } public System.Collections.ObjectModel.Collection Invoke(string script) { return default(System.Collections.ObjectModel.Collection); } @@ -5399,41 +5399,41 @@ public enum RunspaceMode { } public sealed class RunspacePoolStateInfo { public RunspacePoolStateInfo(System.Management.Automation.Runspaces.RunspacePoolState state, System.Exception reason) { } - + public System.Exception Reason { get { return default(System.Exception); } } public System.Management.Automation.Runspaces.RunspacePoolState State { get { return default(System.Management.Automation.Runspaces.RunspacePoolState); } } - + } public class RunspaceRepository : System.Management.Automation.Repository { internal RunspaceRepository() : base (default(string)) { } public System.Collections.Generic.List Runspaces { get { return default(System.Collections.Generic.List); } } - + protected override System.Guid GetKey(System.Management.Automation.Runspaces.PSSession item) { return default(System.Guid); } } public class RuntimeDefinedParameter { public RuntimeDefinedParameter() { } public RuntimeDefinedParameter(string name, System.Type parameterType, System.Collections.ObjectModel.Collection attributes) { } - + public System.Collections.ObjectModel.Collection Attributes { get { return default(System.Collections.ObjectModel.Collection); } } public bool IsSet { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(bool); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string Name { get { return default(string); } set { } } public System.Type ParameterType { get { return default(System.Type); } set { } } public object Value { get { return default(object); } set { } } - + } public class RuntimeDefinedParameterDictionary : System.Collections.Generic.Dictionary { public RuntimeDefinedParameterDictionary() { } - + public object Data { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(object); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public string HelpFile { get { return default(string); } set { } } - + } public class RuntimeException : System.Exception, System.Management.Automation.IContainsErrorRecord { public RuntimeException() { } public RuntimeException(string message) { } public RuntimeException(string message, System.Exception innerException) { } public RuntimeException(string message, System.Exception innerException, System.Management.Automation.ErrorRecord errorRecord) { } - + public virtual System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } public override string StackTrace { get { return default(string); } } public bool WasThrownFromThrowStatement { get { return default(bool); } set { } } @@ -5456,7 +5456,7 @@ public class ScriptBlock { #if V2_PARSER_API public System.Management.Automation.PSToken StartPosition { get { return default(System.Management.Automation.PSToken); } } #endif - + public void CheckRestrictedLanguage(System.Collections.Generic.IEnumerable allowedCommands, System.Collections.Generic.IEnumerable allowedVariables, bool allowEnvironmentVariables) { } public static System.Management.Automation.ScriptBlock Create(string script) { return default(System.Management.Automation.ScriptBlock); } public System.Management.Automation.ScriptBlock GetNewClosure() { return default(System.Management.Automation.ScriptBlock); } @@ -5478,7 +5478,7 @@ public class ScriptCallDepthException : System.Exception, System.Management.Auto public ScriptCallDepthException() { } public ScriptCallDepthException(string message) { } public ScriptCallDepthException(string message, System.Exception innerException) { } - + public int CallDepth { get { return default(int); } } public System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } } @@ -5487,14 +5487,14 @@ internal ScriptInfo() { } public override string Definition { get { return default(string); } } public override System.Collections.ObjectModel.ReadOnlyCollection OutputType { get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public System.Management.Automation.ScriptBlock ScriptBlock { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.ScriptBlock); } } - + public override string ToString() { return default(string); } } public class ScriptRequiresException : System.Management.Automation.RuntimeException { public ScriptRequiresException() { } public ScriptRequiresException(string message) { } public ScriptRequiresException(string message, System.Exception innerException) { } - + public string CommandName { get { return default(string); } } public System.Collections.ObjectModel.ReadOnlyCollection MissingPSSnapIns { get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public System.Version RequiresPSVersion { get { return default(System.Version); } } @@ -5516,7 +5516,7 @@ public enum SessionCapabilities { } public sealed class SessionState { public SessionState() { } - + public System.Collections.Generic.List Applications { get { return default(System.Collections.Generic.List); } } public System.Management.Automation.DriveManagementIntrinsics Drive { get { return default(System.Management.Automation.DriveManagementIntrinsics); } } public System.Management.Automation.CommandInvocationIntrinsics InvokeCommand { get { return default(System.Management.Automation.CommandInvocationIntrinsics); } } @@ -5528,7 +5528,7 @@ public SessionState() { } public System.Management.Automation.PSVariableIntrinsics PSVariable { get { return default(System.Management.Automation.PSVariableIntrinsics); } } public System.Collections.Generic.List Scripts { get { return default(System.Collections.Generic.List); } } public bool UseFullLanguageModeInDebugger { get { return default(bool); } } - + public static bool IsVisible(System.Management.Automation.CommandOrigin origin, System.Management.Automation.CommandInfo commandInfo) { return default(bool); } public static bool IsVisible(System.Management.Automation.CommandOrigin origin, System.Management.Automation.PSVariable variable) { return default(bool); } public static bool IsVisible(System.Management.Automation.CommandOrigin origin, object valueToCheck) { return default(bool); } @@ -5554,7 +5554,7 @@ public class SessionStateException : System.Management.Automation.RuntimeExcepti public SessionStateException() { } public SessionStateException(string message) { } public SessionStateException(string message, System.Exception innerException) { } - + public override System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } public string ItemName { get { return default(string); } } public System.Management.Automation.SessionStateCategory SessionStateCategory { get { return default(System.Management.Automation.SessionStateCategory); } } @@ -5575,7 +5575,7 @@ public class SettingValueExceptionEventArgs : System.EventArgs { internal SettingValueExceptionEventArgs() { } public System.Exception Exception { get { return default(System.Exception); } } public bool ShouldThrow { get { return default(bool); } set { } } - + } public class SetValueException : System.Management.Automation.ExtendedTypeSystemException { public SetValueException() { } @@ -5599,7 +5599,7 @@ internal Signature() { } public System.Management.Automation.SignatureStatus Status { get { return default(System.Management.Automation.SignatureStatus); } } public string StatusMessage { get { return default(string); } } public System.Security.Cryptography.X509Certificates.X509Certificate2 TimeStamperCertificate { get { return default(System.Security.Cryptography.X509Certificates.X509Certificate2); } } - + } public enum SignatureStatus { HashMismatch = 3, @@ -5646,10 +5646,10 @@ public SupportsWildcardsAttribute() { } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct SwitchParameter { public SwitchParameter(bool isPresent) { throw new System.NotImplementedException(); } - + public bool IsPresent { get { return default(bool); } } public static System.Management.Automation.SwitchParameter Present { get { return default(System.Management.Automation.SwitchParameter); } } - + public override bool Equals(object obj) { return default(bool); } public override int GetHashCode() { return default(int); } public static bool operator ==(bool first, System.Management.Automation.SwitchParameter second) { return default(bool); } @@ -5668,111 +5668,111 @@ public sealed class TableControl : System.Management.Automation.PSControl { public TableControl() { } public TableControl(System.Management.Automation.TableControlRow tableControlRow) { } public TableControl(System.Management.Automation.TableControlRow tableControlRow, System.Collections.Generic.IEnumerable tableControlColumnHeaders) { } - + public System.Collections.Generic.List Headers { get { return default(System.Collections.Generic.List); } } public System.Collections.Generic.List Rows { get { return default(System.Collections.Generic.List); } } - + public override string ToString() { return default(string); } } public sealed class TableControlColumn { public TableControlColumn(System.Management.Automation.Alignment alignment, System.Management.Automation.DisplayEntry entry) { } - + public System.Management.Automation.Alignment Alignment { get { return default(System.Management.Automation.Alignment); } } public System.Management.Automation.DisplayEntry DisplayEntry { get { return default(System.Management.Automation.DisplayEntry); } } - + public override string ToString() { return default(string); } } public sealed class TableControlColumnHeader { public TableControlColumnHeader(string label, int width, System.Management.Automation.Alignment alignment) { } - + public System.Management.Automation.Alignment Alignment { get { return default(System.Management.Automation.Alignment); } } public string Label { get { return default(string); } } public int Width { get { return default(int); } } - + } public sealed class TableControlRow { public TableControlRow() { } public TableControlRow(System.Collections.Generic.IEnumerable columns) { } - + public System.Collections.Generic.List Columns { get { return default(System.Collections.Generic.List); } } - + } #endif [System.AttributeUsageAttribute((AttributeTargets)384)] public abstract class ValidateArgumentsAttribute : System.Management.Automation.Internal.CmdletMetadataAttribute { protected ValidateArgumentsAttribute() { } - + protected abstract void Validate(object arguments, System.Management.Automation.EngineIntrinsics engineIntrinsics); } [System.AttributeUsageAttribute((AttributeTargets)384)] public sealed class ValidateCountAttribute : System.Management.Automation.ValidateArgumentsAttribute { public ValidateCountAttribute(int minLength, int maxLength) { } - + public int MaxLength { get { return default(int); } } public int MinLength { get { return default(int); } } - + protected override void Validate(object arguments, System.Management.Automation.EngineIntrinsics engineIntrinsics) { } } [System.AttributeUsageAttribute((AttributeTargets)384)] public abstract class ValidateEnumeratedArgumentsAttribute : System.Management.Automation.ValidateArgumentsAttribute { protected ValidateEnumeratedArgumentsAttribute() { } - + protected sealed override void Validate(object arguments, System.Management.Automation.EngineIntrinsics engineIntrinsics) { } protected abstract void ValidateElement(object element); } [System.AttributeUsageAttribute((AttributeTargets)384)] public sealed class ValidateLengthAttribute : System.Management.Automation.ValidateEnumeratedArgumentsAttribute { public ValidateLengthAttribute(int minLength, int maxLength) { } - + public int MaxLength { get { return default(int); } } public int MinLength { get { return default(int); } } - + protected override void ValidateElement(object element) { } } [System.AttributeUsageAttribute((AttributeTargets)384)] public sealed class ValidateNotNullAttribute : System.Management.Automation.ValidateArgumentsAttribute { public ValidateNotNullAttribute() { } - + protected override void Validate(object arguments, System.Management.Automation.EngineIntrinsics engineIntrinsics) { } } [System.AttributeUsageAttribute((AttributeTargets)384)] public sealed class ValidateNotNullOrEmptyAttribute : System.Management.Automation.ValidateArgumentsAttribute { public ValidateNotNullOrEmptyAttribute() { } - + protected override void Validate(object arguments, System.Management.Automation.EngineIntrinsics engineIntrinsics) { } } [System.AttributeUsageAttribute((AttributeTargets)384)] public sealed class ValidatePatternAttribute : System.Management.Automation.ValidateEnumeratedArgumentsAttribute { public ValidatePatternAttribute(string regexPattern) { } - + public System.Text.RegularExpressions.RegexOptions Options { get { return default(System.Text.RegularExpressions.RegexOptions); } set { } } public string RegexPattern { get { return default(string); } } - + protected override void ValidateElement(object element) { } } [System.AttributeUsageAttribute((AttributeTargets)384)] public sealed class ValidateRangeAttribute : System.Management.Automation.ValidateEnumeratedArgumentsAttribute { public ValidateRangeAttribute(object minRange, object maxRange) { } - + public object MaxRange { get { return default(object); } } public object MinRange { get { return default(object); } } - + protected override void ValidateElement(object element) { } } public sealed class ValidateScriptAttribute : System.Management.Automation.ValidateEnumeratedArgumentsAttribute { public ValidateScriptAttribute(System.Management.Automation.ScriptBlock scriptBlock) { } - + public System.Management.Automation.ScriptBlock ScriptBlock { get { return default(System.Management.Automation.ScriptBlock); } } - + protected override void ValidateElement(object element) { } } [System.AttributeUsageAttribute((AttributeTargets)384)] public sealed class ValidateSetAttribute : System.Management.Automation.ValidateEnumeratedArgumentsAttribute { public ValidateSetAttribute(params string[] validValues) { } - + public bool IgnoreCase { get { return default(bool); } set { } } public System.Collections.Generic.IList ValidValues { get { return default(System.Collections.Generic.IList); } } - + protected override void ValidateElement(object element) { } } public class ValidationMetadataException : System.Management.Automation.MetadataException { @@ -5789,12 +5789,12 @@ public class VariableBreakpoint : System.Management.Automation.Breakpoint { internal VariableBreakpoint() { } public System.Management.Automation.VariableAccessMode AccessMode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.VariableAccessMode); } } public string Variable { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } - + public override string ToString() { return default(string); } } public class VariablePath { public VariablePath(string path) { } - + public string DriveName { get { return default(string); } } public bool IsDriveQualified { get { return default(bool); } } public bool IsGlobal { get { return default(bool); } } @@ -5805,7 +5805,7 @@ public VariablePath(string path) { } public bool IsUnscopedVariable { get { return default(bool); } } public bool IsVariable { get { return default(bool); } } public string UserPath { get { return default(string); } } - + public override string ToString() { return default(string); } } [System.Runtime.Serialization.DataContractAttribute] @@ -5931,9 +5931,9 @@ public WarningRecord(System.Management.Automation.PSObject record) { } public WarningRecord(string message) { } public WarningRecord(string fullyQualifiedWarningId, System.Management.Automation.PSObject record) { } public WarningRecord(string fullyQualifiedWarningId, string message) { } - + public string FullyQualifiedWarningId { get { return default(string); } } - + } #if FORMAT_API public sealed class WideControl : System.Management.Automation.PSControl { @@ -5941,20 +5941,20 @@ public WideControl() { } public WideControl(System.Collections.Generic.IEnumerable wideEntries) { } public WideControl(System.Collections.Generic.IEnumerable wideEntries, uint columns) { } public WideControl(uint columns) { } - + public System.Management.Automation.Alignment Alignment { get { return default(System.Management.Automation.Alignment); } } public uint Columns { get { return default(uint); } } public System.Collections.Generic.List Entries { get { return default(System.Collections.Generic.List); } } - + public override string ToString() { return default(string); } } public sealed class WideControlEntryItem { public WideControlEntryItem(System.Management.Automation.DisplayEntry entry) { } public WideControlEntryItem(System.Management.Automation.DisplayEntry entry, System.Collections.Generic.IEnumerable selectedBy) { } - + public System.Management.Automation.DisplayEntry DisplayEntry { get { return default(System.Management.Automation.DisplayEntry); } } public System.Collections.Generic.List SelectedBy { get { return default(System.Collections.Generic.List); } } - + } #endif [System.FlagsAttribute] @@ -5967,7 +5967,7 @@ public enum WildcardOptions { public sealed class WildcardPattern { public WildcardPattern(string pattern) { } public WildcardPattern(string pattern, System.Management.Automation.WildcardOptions options) { } - + public static bool ContainsWildcardCharacters(string pattern) { return default(bool); } public static string Escape(string pattern) { return default(string); } public bool IsMatch(string input) { return default(bool); } @@ -5983,12 +5983,12 @@ public WildcardPatternException(string message, System.Exception innerException) public class WorkflowInfo : System.Management.Automation.FunctionInfo { public WorkflowInfo(string name, string definition, System.Management.Automation.ScriptBlock workflow, string xamlDefinition, System.Management.Automation.WorkflowInfo[] workflowsCalled) { } public WorkflowInfo(string name, string definition, System.Management.Automation.ScriptBlock workflow, string xamlDefinition, System.Management.Automation.WorkflowInfo[] workflowsCalled, System.Management.Automation.PSModuleInfo module) { } - + public override string Definition { get { return default(string); } } public string NestedXamlDefinition { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } } public System.Collections.ObjectModel.ReadOnlyCollection WorkflowsCalled { get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public string XamlDefinition { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } - + protected internal override void Update(System.Management.Automation.FunctionInfo function, bool force, System.Management.Automation.ScopedItemOptions options, string helpFile) { } } #endif @@ -5997,12 +5997,12 @@ namespace System.Management.Automation.Host { [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct BufferCell { public BufferCell(char character, System.ConsoleColor foreground, System.ConsoleColor background, System.Management.Automation.Host.BufferCellType bufferCellType) { throw new System.NotImplementedException(); } - + public System.ConsoleColor BackgroundColor { get { return default(System.ConsoleColor); } set { } } public System.Management.Automation.Host.BufferCellType BufferCellType { get { return default(System.Management.Automation.Host.BufferCellType); } set { } } public char Character { get { return default(char); } set { } } public System.ConsoleColor ForegroundColor { get { return default(System.ConsoleColor); } set { } } - + public override bool Equals(object obj) { return default(bool); } public override int GetHashCode() { return default(int); } public static bool operator ==(System.Management.Automation.Host.BufferCell first, System.Management.Automation.Host.BufferCell second) { return default(bool); } @@ -6017,10 +6017,10 @@ public enum BufferCellType { public sealed class ChoiceDescription { public ChoiceDescription(string label) { } public ChoiceDescription(string label, string helpMessage) { } - + public string HelpMessage { get { return default(string); } set { } } public string Label { get { return default(string); } } - + } [System.FlagsAttribute] public enum ControlKeyStates { @@ -6037,10 +6037,10 @@ public enum ControlKeyStates { [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct Coordinates { public Coordinates(int x, int y) { throw new System.NotImplementedException(); } - + public int X { get { return default(int); } set { } } public int Y { get { return default(int); } set { } } - + public override bool Equals(object obj) { return default(bool); } public override int GetHashCode() { return default(int); } public static bool operator ==(System.Management.Automation.Host.Coordinates first, System.Management.Automation.Host.Coordinates second) { return default(bool); } @@ -6049,7 +6049,7 @@ public partial struct Coordinates { } public class FieldDescription { public FieldDescription(string name) { } - + public System.Collections.ObjectModel.Collection Attributes { get { return default(System.Collections.ObjectModel.Collection); } } public System.Management.Automation.PSObject DefaultValue { get { return default(System.Management.Automation.PSObject); } set { } } public string HelpMessage { get { return default(string); } set { } } @@ -6059,7 +6059,7 @@ public FieldDescription(string name) { } public string ParameterAssemblyFullName { get { return default(string); } } public string ParameterTypeFullName { get { return default(string); } } public string ParameterTypeName { get { return default(string); } } - + public void SetParameterType(System.Type parameterType) { } } public class HostException : System.Management.Automation.RuntimeException { @@ -6071,7 +6071,7 @@ public HostException(string message, System.Exception innerException, string err public partial interface IHostSupportsInteractiveSession { bool IsRunspacePushed { get; } System.Management.Automation.Runspaces.Runspace Runspace { get; } - + void PopRunspace(); void PushRunspace(System.Management.Automation.Runspaces.Runspace runspace); } @@ -6081,12 +6081,12 @@ public partial interface IHostUISupportsMultipleChoiceSelection { [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct KeyInfo { public KeyInfo(int virtualKeyCode, char ch, System.Management.Automation.Host.ControlKeyStates controlKeyState, bool keyDown) { throw new System.NotImplementedException(); } - + public char Character { get { return default(char); } set { } } public System.Management.Automation.Host.ControlKeyStates ControlKeyState { get { return default(System.Management.Automation.Host.ControlKeyStates); } set { } } public bool KeyDown { get { return default(bool); } set { } } public int VirtualKeyCode { get { return default(int); } set { } } - + public override bool Equals(object obj) { return default(bool); } public override int GetHashCode() { return default(int); } public static bool operator ==(System.Management.Automation.Host.KeyInfo first, System.Management.Automation.Host.KeyInfo second) { return default(bool); } @@ -6101,7 +6101,7 @@ public PromptingException(string message, System.Exception innerException, strin } public abstract class PSHost { protected PSHost() { } - + public abstract System.Globalization.CultureInfo CurrentCulture { get; } public abstract System.Globalization.CultureInfo CurrentUICulture { get; } public abstract System.Guid InstanceId { get; } @@ -6109,7 +6109,7 @@ protected PSHost() { } public virtual System.Management.Automation.PSObject PrivateData { get { return default(System.Management.Automation.PSObject); } } public abstract System.Management.Automation.Host.PSHostUserInterface UI { get; } public abstract System.Version Version { get; } - + public abstract void EnterNestedPrompt(); public abstract void ExitNestedPrompt(); public abstract void NotifyBeginApplication(); @@ -6118,7 +6118,7 @@ protected PSHost() { } } public abstract class PSHostRawUserInterface { protected PSHostRawUserInterface() { } - + public abstract System.ConsoleColor BackgroundColor { get; set; } public abstract System.Management.Automation.Host.Size BufferSize { get; set; } public abstract System.Management.Automation.Host.Coordinates CursorPosition { get; set; } @@ -6130,7 +6130,7 @@ protected PSHostRawUserInterface() { } public abstract System.Management.Automation.Host.Coordinates WindowPosition { get; set; } public abstract System.Management.Automation.Host.Size WindowSize { get; set; } public abstract string WindowTitle { get; set; } - + public abstract void FlushInputBuffer(); public abstract System.Management.Automation.Host.BufferCell[,] GetBufferContents(System.Management.Automation.Host.Rectangle rectangle); public virtual int LengthInBufferCells(char source) { return default(int); } @@ -6147,9 +6147,9 @@ protected PSHostRawUserInterface() { } } public abstract class PSHostUserInterface { protected PSHostUserInterface() { } - + public abstract System.Management.Automation.Host.PSHostRawUserInterface RawUI { get; } - + public abstract System.Collections.Generic.Dictionary Prompt(string caption, string message, System.Collections.ObjectModel.Collection descriptions); public abstract int PromptForChoice(string caption, string message, System.Collections.ObjectModel.Collection choices, int defaultChoice); public abstract System.Management.Automation.PSCredential PromptForCredential(string caption, string message, string userName, string targetName); @@ -6178,12 +6178,12 @@ public enum ReadKeyOptions { public partial struct Rectangle { public Rectangle(int left, int top, int right, int bottom) { throw new System.NotImplementedException(); } public Rectangle(System.Management.Automation.Host.Coordinates upperLeft, System.Management.Automation.Host.Coordinates lowerRight) { throw new System.NotImplementedException(); } - + public int Bottom { get { return default(int); } set { } } public int Left { get { return default(int); } set { } } public int Right { get { return default(int); } set { } } public int Top { get { return default(int); } set { } } - + public override bool Equals(object obj) { return default(bool); } public override int GetHashCode() { return default(int); } public static bool operator ==(System.Management.Automation.Host.Rectangle first, System.Management.Automation.Host.Rectangle second) { return default(bool); } @@ -6193,10 +6193,10 @@ public partial struct Rectangle { [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct Size { public Size(int width, int height) { throw new System.NotImplementedException(); } - + public int Height { get { return default(int); } set { } } public int Width { get { return default(int); } set { } } - + public override bool Equals(object obj) { return default(bool); } public override int GetHashCode() { return default(int); } public static bool operator ==(System.Management.Automation.Host.Size first, System.Management.Automation.Host.Size second) { return default(bool); } @@ -6211,7 +6211,7 @@ public static class AlternateDataStreamUtilities { #endif public static class AutomationNull { public static System.Management.Automation.PSObject Value { get { return default(System.Management.Automation.PSObject); } } - + } [System.AttributeUsageAttribute((AttributeTargets)32767)] public abstract class CmdletMetadataAttribute : System.Attribute { @@ -6247,7 +6247,7 @@ internal CommonParameters() { } //Internal: [System.Management.Automation.Internal.CommonParameters.ValidateVariableName] [System.Management.Automation.ParameterAttribute] public string WarningVariable { get { return default(string); } set { } } - + } #if WORKFLOW public partial interface IAstToWorkflowConverter { @@ -6260,7 +6260,7 @@ public partial interface IAstToWorkflowConverter { public abstract class InternalCommand { internal InternalCommand() { } public System.Management.Automation.CommandOrigin CommandOrigin { get { return default(System.Management.Automation.CommandOrigin); } } - + } [System.AttributeUsageAttribute((AttributeTargets)32767)] public abstract class ParsingBaseAttribute : System.Management.Automation.Internal.CmdletMetadataAttribute { @@ -6274,7 +6274,7 @@ internal ShouldProcessParameters() { } [System.Management.Automation.AliasAttribute(new string[]{ "wi"})] [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter WhatIf { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + } #if TRANSACTIONS public sealed class TransactionParameters { @@ -6282,28 +6282,28 @@ internal TransactionParameters() { } [System.Management.Automation.AliasAttribute(new string[]{ "usetx"})] [System.Management.Automation.ParameterAttribute] public System.Management.Automation.SwitchParameter UseTransaction { get { return default(System.Management.Automation.SwitchParameter); } set { } } - + } #endif } namespace System.Management.Automation.Language { public class ArrayExpressionAst : System.Management.Automation.Language.ExpressionAst { public ArrayExpressionAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.StatementBlockAst statementBlock) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public override System.Type StaticType { get { return default(System.Type); } } public System.Management.Automation.Language.StatementBlockAst SubExpression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.StatementBlockAst); } } - + } public class ArrayLiteralAst : System.Management.Automation.Language.ExpressionAst { public ArrayLiteralAst(System.Management.Automation.Language.IScriptExtent extent, System.Collections.Generic.IList elements) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Collections.ObjectModel.ReadOnlyCollection Elements { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public override System.Type StaticType { get { return default(System.Type); } } - + } public sealed class ArrayTypeName : System.Management.Automation.Language.ITypeName { public ArrayTypeName(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.ITypeName elementType, int rank) { } - + public string AssemblyName { get { return default(string); } } public System.Management.Automation.Language.ITypeName ElementType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ITypeName); } } public System.Management.Automation.Language.IScriptExtent Extent { get { return default(System.Management.Automation.Language.IScriptExtent); } } @@ -6312,26 +6312,26 @@ public ArrayTypeName(System.Management.Automation.Language.IScriptExtent extent, public bool IsGeneric { get { return default(bool); } } public string Name { get { return default(string); } } public int Rank { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(int); } } - + public System.Type GetReflectionAttributeType() { return default(System.Type); } public System.Type GetReflectionType() { return default(System.Type); } public override string ToString() { return default(string); } } public class AssignmentStatementAst : System.Management.Automation.Language.PipelineBaseAst { public AssignmentStatementAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.ExpressionAst left, System.Management.Automation.Language.TokenKind @operator, System.Management.Automation.Language.StatementAst right, System.Management.Automation.Language.IScriptExtent errorPosition) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.IScriptExtent ErrorPosition { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.IScriptExtent); } } public System.Management.Automation.Language.ExpressionAst Left { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ExpressionAst); } } public System.Management.Automation.Language.TokenKind Operator { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.TokenKind); } } public System.Management.Automation.Language.StatementAst Right { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.StatementAst); } } - + } public abstract class Ast { protected Ast(System.Management.Automation.Language.IScriptExtent extent) { } - + public System.Management.Automation.Language.IScriptExtent Extent { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.IScriptExtent); } } public System.Management.Automation.Language.Ast Parent { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.Ast); } } - + public System.Management.Automation.Language.Ast Find(System.Func predicate, bool searchNestedScriptBlocks) { return default(System.Management.Automation.Language.Ast); } public System.Collections.Generic.IEnumerable FindAll(System.Func predicate, bool searchNestedScriptBlocks) { return default(System.Collections.Generic.IEnumerable); } public override string ToString() { return default(string); } @@ -6345,7 +6345,7 @@ public enum AstVisitAction { } public abstract class AstVisitor { protected AstVisitor() { } - + public virtual System.Management.Automation.Language.AstVisitAction VisitArrayExpression(System.Management.Automation.Language.ArrayExpressionAst arrayExpressionAst) { return default(System.Management.Automation.Language.AstVisitAction); } public virtual System.Management.Automation.Language.AstVisitAction VisitArrayLiteral(System.Management.Automation.Language.ArrayLiteralAst arrayLiteralAst) { return default(System.Management.Automation.Language.AstVisitAction); } public virtual System.Management.Automation.Language.AstVisitAction VisitAssignmentStatement(System.Management.Automation.Language.AssignmentStatementAst assignmentStatementAst) { return default(System.Management.Automation.Language.AstVisitAction); } @@ -6403,89 +6403,89 @@ protected AstVisitor() { } } public class AttributeAst : System.Management.Automation.Language.AttributeBaseAst { public AttributeAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.ITypeName typeName, System.Collections.Generic.IEnumerable positionalArguments, System.Collections.Generic.IEnumerable namedArguments) : base (default(System.Management.Automation.Language.IScriptExtent), default(System.Management.Automation.Language.ITypeName)) { } - + public System.Collections.ObjectModel.ReadOnlyCollection NamedArguments { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public System.Collections.ObjectModel.ReadOnlyCollection PositionalArguments { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } - + } public abstract class AttributeBaseAst : System.Management.Automation.Language.Ast { protected AttributeBaseAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.ITypeName typeName) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.ITypeName TypeName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ITypeName); } } - + } public class AttributedExpressionAst : System.Management.Automation.Language.ExpressionAst { public AttributedExpressionAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.AttributeBaseAst attribute, System.Management.Automation.Language.ExpressionAst child) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.AttributeBaseAst Attribute { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.AttributeBaseAst); } } public System.Management.Automation.Language.ExpressionAst Child { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ExpressionAst); } } - + } public class BinaryExpressionAst : System.Management.Automation.Language.ExpressionAst { public BinaryExpressionAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.ExpressionAst left, System.Management.Automation.Language.TokenKind @operator, System.Management.Automation.Language.ExpressionAst right, System.Management.Automation.Language.IScriptExtent errorPosition) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.IScriptExtent ErrorPosition { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.IScriptExtent); } } public System.Management.Automation.Language.ExpressionAst Left { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ExpressionAst); } } public System.Management.Automation.Language.TokenKind Operator { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.TokenKind); } } public System.Management.Automation.Language.ExpressionAst Right { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ExpressionAst); } } public override System.Type StaticType { get { return default(System.Type); } } - + } public class BlockStatementAst : System.Management.Automation.Language.StatementAst { public BlockStatementAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.Token kind, System.Management.Automation.Language.StatementBlockAst body) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.StatementBlockAst Body { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.StatementBlockAst); } } public System.Management.Automation.Language.Token Kind { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.Token); } } - + } public class BreakStatementAst : System.Management.Automation.Language.StatementAst { public BreakStatementAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.ExpressionAst label) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.ExpressionAst Label { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ExpressionAst); } } - + } public class CatchClauseAst : System.Management.Automation.Language.Ast { public CatchClauseAst(System.Management.Automation.Language.IScriptExtent extent, System.Collections.Generic.IEnumerable catchTypes, System.Management.Automation.Language.StatementBlockAst body) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.StatementBlockAst Body { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.StatementBlockAst); } } public System.Collections.ObjectModel.ReadOnlyCollection CatchTypes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public bool IsCatchAll { get { return default(bool); } } - + } public class CommandAst : System.Management.Automation.Language.CommandBaseAst { public CommandAst(System.Management.Automation.Language.IScriptExtent extent, System.Collections.Generic.IEnumerable commandElements, System.Management.Automation.Language.TokenKind invocationOperator, System.Collections.Generic.IEnumerable redirections) : base (default(System.Management.Automation.Language.IScriptExtent), default(System.Collections.Generic.IEnumerable)) { } - + public System.Collections.ObjectModel.ReadOnlyCollection CommandElements { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public System.Management.Automation.Language.TokenKind InvocationOperator { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.TokenKind); } } - + public string GetCommandName() { return default(string); } } public abstract class CommandBaseAst : System.Management.Automation.Language.StatementAst { protected CommandBaseAst(System.Management.Automation.Language.IScriptExtent extent, System.Collections.Generic.IEnumerable redirections) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Collections.ObjectModel.ReadOnlyCollection Redirections { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } - + } public abstract class CommandElementAst : System.Management.Automation.Language.Ast { protected CommandElementAst(System.Management.Automation.Language.IScriptExtent extent) : base (default(System.Management.Automation.Language.IScriptExtent)) { } } public class CommandExpressionAst : System.Management.Automation.Language.CommandBaseAst { public CommandExpressionAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.ExpressionAst expression, System.Collections.Generic.IEnumerable redirections) : base (default(System.Management.Automation.Language.IScriptExtent), default(System.Collections.Generic.IEnumerable)) { } - + public System.Management.Automation.Language.ExpressionAst Expression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ExpressionAst); } } - + } public class CommandParameterAst : System.Management.Automation.Language.CommandElementAst { public CommandParameterAst(System.Management.Automation.Language.IScriptExtent extent, string parameterName, System.Management.Automation.Language.ExpressionAst argument, System.Management.Automation.Language.IScriptExtent errorPosition) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.ExpressionAst Argument { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ExpressionAst); } } public System.Management.Automation.Language.IScriptExtent ErrorPosition { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.IScriptExtent); } } public string ParameterName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } - + } public sealed class CommentHelpInfo { public CommentHelpInfo() { } - + public string Component { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } public string Description { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } public System.Collections.ObjectModel.ReadOnlyCollection Examples { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } @@ -6501,36 +6501,36 @@ public CommentHelpInfo() { } public string RemoteHelpRunspace { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } public string Role { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } public string Synopsis { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } - + public string GetCommentBlock() { return default(string); } } public class ConstantExpressionAst : System.Management.Automation.Language.ExpressionAst { public ConstantExpressionAst(System.Management.Automation.Language.IScriptExtent extent, object value) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public override System.Type StaticType { get { return default(System.Type); } } public object Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(object); } } - + } public class ContinueStatementAst : System.Management.Automation.Language.StatementAst { public ContinueStatementAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.ExpressionAst label) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.ExpressionAst Label { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ExpressionAst); } } - + } public class ConvertExpressionAst : System.Management.Automation.Language.AttributedExpressionAst { public ConvertExpressionAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.TypeConstraintAst typeConstraint, System.Management.Automation.Language.ExpressionAst child) : base (default(System.Management.Automation.Language.IScriptExtent), default(System.Management.Automation.Language.AttributeBaseAst), default(System.Management.Automation.Language.ExpressionAst)) { } - + public override System.Type StaticType { get { return default(System.Type); } } public System.Management.Automation.Language.TypeConstraintAst Type { get { return default(System.Management.Automation.Language.TypeConstraintAst); } } - + } public class DataStatementAst : System.Management.Automation.Language.StatementAst { public DataStatementAst(System.Management.Automation.Language.IScriptExtent extent, string variableName, System.Collections.Generic.IEnumerable commandsAllowed, System.Management.Automation.Language.StatementBlockAst body) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.StatementBlockAst Body { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.StatementBlockAst); } } public System.Collections.ObjectModel.ReadOnlyCollection CommandsAllowed { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public string Variable { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } - + } public class DoUntilStatementAst : System.Management.Automation.Language.LoopStatementAst { public DoUntilStatementAst(System.Management.Automation.Language.IScriptExtent extent, string label, System.Management.Automation.Language.PipelineBaseAst condition, System.Management.Automation.Language.StatementBlockAst body) : base (default(System.Management.Automation.Language.IScriptExtent), default(string), default(System.Management.Automation.Language.PipelineBaseAst), default(System.Management.Automation.Language.StatementBlockAst)) { } @@ -6541,7 +6541,7 @@ public class DoWhileStatementAst : System.Management.Automation.Language.LoopSta public class ErrorExpressionAst : System.Management.Automation.Language.ExpressionAst { internal ErrorExpressionAst() : base (default(System.Management.Automation.Language.IScriptExtent)) { } public System.Collections.ObjectModel.ReadOnlyCollection NestedAst { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } - + } public class ErrorStatementAst : System.Management.Automation.Language.PipelineBaseAst { internal ErrorStatementAst() : base (default(System.Management.Automation.Language.IScriptExtent)) { } @@ -6550,41 +6550,41 @@ internal ErrorStatementAst() : base (default(System.Management.Automation.Langua public System.Collections.Generic.Dictionary> Flags { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.Generic.Dictionary>); } } public System.Management.Automation.Language.Token Kind { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.Token); } } public System.Collections.ObjectModel.ReadOnlyCollection NestedAst { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } - + } public class ExitStatementAst : System.Management.Automation.Language.StatementAst { public ExitStatementAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.PipelineBaseAst pipeline) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.PipelineBaseAst Pipeline { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.PipelineBaseAst); } } - + } public class ExpandableStringExpressionAst : System.Management.Automation.Language.ExpressionAst { public ExpandableStringExpressionAst(System.Management.Automation.Language.IScriptExtent extent, string value, System.Management.Automation.Language.StringConstantType type) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Collections.ObjectModel.ReadOnlyCollection NestedExpressions { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public override System.Type StaticType { get { return default(System.Type); } } public System.Management.Automation.Language.StringConstantType StringConstantType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.StringConstantType); } } public string Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } - + } public abstract class ExpressionAst : System.Management.Automation.Language.CommandElementAst { protected ExpressionAst(System.Management.Automation.Language.IScriptExtent extent) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public virtual System.Type StaticType { get { return default(System.Type); } } - + } public class FileRedirectionAst : System.Management.Automation.Language.RedirectionAst { public FileRedirectionAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.RedirectionStream stream, System.Management.Automation.Language.ExpressionAst file, bool append) : base (default(System.Management.Automation.Language.IScriptExtent), default(System.Management.Automation.Language.RedirectionStream)) { } - + public bool Append { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(bool); } } public System.Management.Automation.Language.ExpressionAst Location { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ExpressionAst); } } - + } public class FileRedirectionToken : System.Management.Automation.Language.RedirectionToken { internal FileRedirectionToken() { } public bool Append { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(bool); } } public System.Management.Automation.Language.RedirectionStream FromStream { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.RedirectionStream); } } - + } [System.FlagsAttribute] public enum ForEachFlags { @@ -6593,32 +6593,32 @@ public enum ForEachFlags { } public class ForEachStatementAst : System.Management.Automation.Language.LoopStatementAst { public ForEachStatementAst(System.Management.Automation.Language.IScriptExtent extent, string label, System.Management.Automation.Language.ForEachFlags flags, System.Management.Automation.Language.VariableExpressionAst variable, System.Management.Automation.Language.PipelineBaseAst expression, System.Management.Automation.Language.StatementBlockAst body) : base (default(System.Management.Automation.Language.IScriptExtent), default(string), default(System.Management.Automation.Language.PipelineBaseAst), default(System.Management.Automation.Language.StatementBlockAst)) { } - + public System.Management.Automation.Language.ForEachFlags Flags { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ForEachFlags); } } public System.Management.Automation.Language.VariableExpressionAst Variable { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.VariableExpressionAst); } } - + } public class ForStatementAst : System.Management.Automation.Language.LoopStatementAst { public ForStatementAst(System.Management.Automation.Language.IScriptExtent extent, string label, System.Management.Automation.Language.PipelineBaseAst initializer, System.Management.Automation.Language.PipelineBaseAst condition, System.Management.Automation.Language.PipelineBaseAst iterator, System.Management.Automation.Language.StatementBlockAst body) : base (default(System.Management.Automation.Language.IScriptExtent), default(string), default(System.Management.Automation.Language.PipelineBaseAst), default(System.Management.Automation.Language.StatementBlockAst)) { } - + public System.Management.Automation.Language.PipelineBaseAst Initializer { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.PipelineBaseAst); } } public System.Management.Automation.Language.PipelineBaseAst Iterator { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.PipelineBaseAst); } } - + } public class FunctionDefinitionAst : System.Management.Automation.Language.StatementAst { public FunctionDefinitionAst(System.Management.Automation.Language.IScriptExtent extent, bool isFilter, bool isWorkflow, string name, System.Collections.Generic.IEnumerable parameters, System.Management.Automation.Language.ScriptBlockAst body) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.ScriptBlockAst Body { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ScriptBlockAst); } } public bool IsFilter { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(bool); } } public bool IsWorkflow { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(bool); } } public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } public System.Collections.ObjectModel.ReadOnlyCollection Parameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } - + public System.Management.Automation.Language.CommentHelpInfo GetHelpContent() { return default(System.Management.Automation.Language.CommentHelpInfo); } } public sealed class GenericTypeName : System.Management.Automation.Language.ITypeName { public GenericTypeName(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.ITypeName genericTypeName, System.Collections.Generic.IEnumerable genericArguments) { } - + public string AssemblyName { get { return default(string); } } public System.Management.Automation.Language.IScriptExtent Extent { get { return default(System.Management.Automation.Language.IScriptExtent); } } public string FullName { get { return default(string); } } @@ -6627,17 +6627,17 @@ public GenericTypeName(System.Management.Automation.Language.IScriptExtent exten public bool IsGeneric { get { return default(bool); } } public string Name { get { return default(string); } } public System.Management.Automation.Language.ITypeName TypeName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ITypeName); } } - + public System.Type GetReflectionAttributeType() { return default(System.Type); } public System.Type GetReflectionType() { return default(System.Type); } public override string ToString() { return default(string); } } public class HashtableAst : System.Management.Automation.Language.ExpressionAst { public HashtableAst(System.Management.Automation.Language.IScriptExtent extent, System.Collections.Generic.IEnumerable> keyValuePairs) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Collections.ObjectModel.ReadOnlyCollection> KeyValuePairs { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection>); } } public override System.Type StaticType { get { return default(System.Type); } } - + } public partial interface ICustomAstVisitor { object VisitArrayExpression(System.Management.Automation.Language.ArrayExpressionAst arrayExpressionAst); @@ -6697,26 +6697,26 @@ public partial interface ICustomAstVisitor { } public class IfStatementAst : System.Management.Automation.Language.StatementAst { public IfStatementAst(System.Management.Automation.Language.IScriptExtent extent, System.Collections.Generic.IEnumerable> clauses, System.Management.Automation.Language.StatementBlockAst elseClause) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Collections.ObjectModel.ReadOnlyCollection> Clauses { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection>); } } public System.Management.Automation.Language.StatementBlockAst ElseClause { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.StatementBlockAst); } } - + } public class IndexExpressionAst : System.Management.Automation.Language.ExpressionAst { public IndexExpressionAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.ExpressionAst target, System.Management.Automation.Language.ExpressionAst index) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.ExpressionAst Index { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ExpressionAst); } } public System.Management.Automation.Language.ExpressionAst Target { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ExpressionAst); } } - + } public class InputRedirectionToken : System.Management.Automation.Language.RedirectionToken { internal InputRedirectionToken() { } } public class InvokeMemberExpressionAst : System.Management.Automation.Language.MemberExpressionAst { public InvokeMemberExpressionAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.ExpressionAst expression, System.Management.Automation.Language.CommandElementAst method, System.Collections.Generic.IEnumerable arguments, bool @static) : base (default(System.Management.Automation.Language.IScriptExtent), default(System.Management.Automation.Language.ExpressionAst), default(System.Management.Automation.Language.CommandElementAst), default(bool)) { } - + public System.Collections.ObjectModel.ReadOnlyCollection Arguments { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } - + } public partial interface IScriptExtent { int EndColumnNumber { get; } @@ -6729,7 +6729,7 @@ public partial interface IScriptExtent { int StartOffset { get; } System.Management.Automation.Language.IScriptPosition StartScriptPosition { get; } string Text { get; } - + } public partial interface IScriptPosition { int ColumnNumber { get; } @@ -6737,7 +6737,7 @@ public partial interface IScriptPosition { string Line { get; } int LineNumber { get; } int Offset { get; } - + string GetFullScript(); } public partial interface ITypeName { @@ -6747,112 +6747,112 @@ public partial interface ITypeName { bool IsArray { get; } bool IsGeneric { get; } string Name { get; } - + System.Type GetReflectionAttributeType(); System.Type GetReflectionType(); } public abstract class LabeledStatementAst : System.Management.Automation.Language.StatementAst { protected LabeledStatementAst(System.Management.Automation.Language.IScriptExtent extent, string label, System.Management.Automation.Language.PipelineBaseAst condition) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.PipelineBaseAst Condition { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.PipelineBaseAst); } } public string Label { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } - + } public class LabelToken : System.Management.Automation.Language.Token { internal LabelToken() { } public string LabelText { get { return default(string); } } - + } public abstract class LoopStatementAst : System.Management.Automation.Language.LabeledStatementAst { protected LoopStatementAst(System.Management.Automation.Language.IScriptExtent extent, string label, System.Management.Automation.Language.PipelineBaseAst condition, System.Management.Automation.Language.StatementBlockAst body) : base (default(System.Management.Automation.Language.IScriptExtent), default(string), default(System.Management.Automation.Language.PipelineBaseAst)) { } - + public System.Management.Automation.Language.StatementBlockAst Body { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.StatementBlockAst); } } - + } public class MemberExpressionAst : System.Management.Automation.Language.ExpressionAst { public MemberExpressionAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.ExpressionAst expression, System.Management.Automation.Language.CommandElementAst member, bool @static) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.ExpressionAst Expression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ExpressionAst); } } public System.Management.Automation.Language.CommandElementAst Member { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.CommandElementAst); } } public bool Static { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(bool); } } - + } public class MergingRedirectionAst : System.Management.Automation.Language.RedirectionAst { public MergingRedirectionAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.RedirectionStream from, System.Management.Automation.Language.RedirectionStream to) : base (default(System.Management.Automation.Language.IScriptExtent), default(System.Management.Automation.Language.RedirectionStream)) { } - + public System.Management.Automation.Language.RedirectionStream ToStream { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.RedirectionStream); } } - + } public class MergingRedirectionToken : System.Management.Automation.Language.RedirectionToken { internal MergingRedirectionToken() { } public System.Management.Automation.Language.RedirectionStream FromStream { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.RedirectionStream); } } public System.Management.Automation.Language.RedirectionStream ToStream { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.RedirectionStream); } } - + } public class NamedAttributeArgumentAst : System.Management.Automation.Language.Ast { public NamedAttributeArgumentAst(System.Management.Automation.Language.IScriptExtent extent, string argumentName, System.Management.Automation.Language.ExpressionAst argument, bool expressionOmitted) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.ExpressionAst Argument { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ExpressionAst); } } public string ArgumentName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } public bool ExpressionOmitted { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(bool); } } - + } public class NamedBlockAst : System.Management.Automation.Language.Ast { public NamedBlockAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.TokenKind blockName, System.Management.Automation.Language.StatementBlockAst statementBlock, bool unnamed) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.TokenKind BlockKind { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.TokenKind); } } public System.Collections.ObjectModel.ReadOnlyCollection Statements { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public System.Collections.ObjectModel.ReadOnlyCollection Traps { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public bool Unnamed { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(bool); } } - + } public class NullString { internal NullString() { } public static System.Management.Automation.Language.NullString Value { get { return default(System.Management.Automation.Language.NullString); } } - + public override string ToString() { return default(string); } } public class NumberToken : System.Management.Automation.Language.Token { internal NumberToken() { } public object Value { get { return default(object); } } - + } public class ParamBlockAst : System.Management.Automation.Language.Ast { public ParamBlockAst(System.Management.Automation.Language.IScriptExtent extent, System.Collections.Generic.IEnumerable attributes, System.Collections.Generic.IEnumerable parameters) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Collections.ObjectModel.ReadOnlyCollection Attributes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public System.Collections.ObjectModel.ReadOnlyCollection Parameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } - + } public class ParameterAst : System.Management.Automation.Language.Ast { public ParameterAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.VariableExpressionAst name, System.Collections.Generic.IEnumerable attributes, System.Management.Automation.Language.ExpressionAst defaultValue) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Collections.ObjectModel.ReadOnlyCollection Attributes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public System.Management.Automation.Language.ExpressionAst DefaultValue { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ExpressionAst); } } public System.Management.Automation.Language.VariableExpressionAst Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.VariableExpressionAst); } } public System.Type StaticType { get { return default(System.Type); } } - + } public class ParameterToken : System.Management.Automation.Language.Token { internal ParameterToken() { } public string ParameterName { get { return default(string); } } public bool UsedColon { get { return default(bool); } } - + } public class ParenExpressionAst : System.Management.Automation.Language.ExpressionAst { public ParenExpressionAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.PipelineBaseAst pipeline) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.PipelineBaseAst Pipeline { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.PipelineBaseAst); } } - + } public class ParseError { public ParseError(System.Management.Automation.Language.IScriptExtent extent, string errorId, string message) { } - + public string ErrorId { get { return default(string); } } public System.Management.Automation.Language.IScriptExtent Extent { get { return default(System.Management.Automation.Language.IScriptExtent); } } public bool IncompleteInput { get { return default(bool); } } public string Message { get { return default(string); } } - + public override string ToString() { return default(string); } } public sealed class Parser { @@ -6863,21 +6863,21 @@ internal Parser() { } public class PipelineAst : System.Management.Automation.Language.PipelineBaseAst { public PipelineAst(System.Management.Automation.Language.IScriptExtent extent, System.Collections.Generic.IEnumerable pipelineElements) : base (default(System.Management.Automation.Language.IScriptExtent)) { } public PipelineAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.CommandBaseAst commandAst) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Collections.ObjectModel.ReadOnlyCollection PipelineElements { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } - + public override System.Management.Automation.Language.ExpressionAst GetPureExpression() { return default(System.Management.Automation.Language.ExpressionAst); } } public abstract class PipelineBaseAst : System.Management.Automation.Language.StatementAst { protected PipelineBaseAst(System.Management.Automation.Language.IScriptExtent extent) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public virtual System.Management.Automation.Language.ExpressionAst GetPureExpression() { return default(System.Management.Automation.Language.ExpressionAst); } } public abstract class RedirectionAst : System.Management.Automation.Language.Ast { protected RedirectionAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.RedirectionStream from) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.RedirectionStream FromStream { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.RedirectionStream); } } - + } public enum RedirectionStream { All = 0, @@ -6893,48 +6893,48 @@ internal RedirectionToken() { } } public sealed class ReflectionTypeName : System.Management.Automation.Language.ITypeName { public ReflectionTypeName(System.Type type) { } - + public string AssemblyName { get { return default(string); } } public System.Management.Automation.Language.IScriptExtent Extent { get { return default(System.Management.Automation.Language.IScriptExtent); } } public string FullName { get { return default(string); } } public bool IsArray { get { return default(bool); } } public bool IsGeneric { get { return default(bool); } } public string Name { get { return default(string); } } - + public System.Type GetReflectionAttributeType() { return default(System.Type); } public System.Type GetReflectionType() { return default(System.Type); } public override string ToString() { return default(string); } } public class ReturnStatementAst : System.Management.Automation.Language.StatementAst { public ReturnStatementAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.PipelineBaseAst pipeline) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.PipelineBaseAst Pipeline { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.PipelineBaseAst); } } - + } public class ScriptBlockAst : System.Management.Automation.Language.Ast { public ScriptBlockAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.ParamBlockAst paramBlock, System.Management.Automation.Language.NamedBlockAst beginBlock, System.Management.Automation.Language.NamedBlockAst processBlock, System.Management.Automation.Language.NamedBlockAst endBlock, System.Management.Automation.Language.NamedBlockAst dynamicParamBlock) : base (default(System.Management.Automation.Language.IScriptExtent)) { } public ScriptBlockAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.ParamBlockAst paramBlock, System.Management.Automation.Language.StatementBlockAst statements, bool isFilter) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.NamedBlockAst BeginBlock { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.NamedBlockAst); } } public System.Management.Automation.Language.NamedBlockAst DynamicParamBlock { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.NamedBlockAst); } } public System.Management.Automation.Language.NamedBlockAst EndBlock { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.NamedBlockAst); } } public System.Management.Automation.Language.ParamBlockAst ParamBlock { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ParamBlockAst); } } public System.Management.Automation.Language.NamedBlockAst ProcessBlock { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.NamedBlockAst); } } public System.Management.Automation.Language.ScriptRequirements ScriptRequirements { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ScriptRequirements); } } - + public System.Management.Automation.Language.CommentHelpInfo GetHelpContent() { return default(System.Management.Automation.Language.CommentHelpInfo); } public System.Management.Automation.ScriptBlock GetScriptBlock() { return default(System.Management.Automation.ScriptBlock); } } public class ScriptBlockExpressionAst : System.Management.Automation.Language.ExpressionAst { public ScriptBlockExpressionAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.ScriptBlockAst scriptBlock) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.ScriptBlockAst ScriptBlock { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ScriptBlockAst); } } public override System.Type StaticType { get { return default(System.Type); } } - + } public sealed class ScriptExtent : System.Management.Automation.Language.IScriptExtent { public ScriptExtent(System.Management.Automation.Language.ScriptPosition startPosition, System.Management.Automation.Language.ScriptPosition endPosition) { } - + public int EndColumnNumber { get { return default(int); } } public int EndLineNumber { get { return default(int); } } public int EndOffset { get { return default(int); } } @@ -6945,22 +6945,22 @@ public ScriptExtent(System.Management.Automation.Language.ScriptPosition startPo public int StartOffset { get { return default(int); } } public System.Management.Automation.Language.IScriptPosition StartScriptPosition { get { return default(System.Management.Automation.Language.IScriptPosition); } } public string Text { get { return default(string); } } - + } public sealed class ScriptPosition : System.Management.Automation.Language.IScriptPosition { public ScriptPosition(string scriptName, int scriptLineNumber, int offsetInLine, string line) { } - + public int ColumnNumber { get { return default(int); } } public string File { get { return default(string); } } public string Line { get { return default(string); } } public int LineNumber { get { return default(int); } } public int Offset { get { return default(int); } } - + public string GetFullScript() { return default(string); } } public class ScriptRequirements { public ScriptRequirements() { } - + public string RequiredApplicationId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } public System.Collections.ObjectModel.ReadOnlyCollection RequiredAssemblies { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public System.Collections.ObjectModel.ReadOnlyCollection RequiredModules { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } @@ -6971,18 +6971,18 @@ protected StatementAst(System.Management.Automation.Language.IScriptExtent exten } public class StatementBlockAst : System.Management.Automation.Language.Ast { public StatementBlockAst(System.Management.Automation.Language.IScriptExtent extent, System.Collections.Generic.IEnumerable statements, System.Collections.Generic.IEnumerable traps) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Collections.ObjectModel.ReadOnlyCollection Statements { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public System.Collections.ObjectModel.ReadOnlyCollection Traps { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } - + } public class StringConstantExpressionAst : System.Management.Automation.Language.ConstantExpressionAst { public StringConstantExpressionAst(System.Management.Automation.Language.IScriptExtent extent, string value, System.Management.Automation.Language.StringConstantType stringConstantType) : base (default(System.Management.Automation.Language.IScriptExtent), default(object)) { } - + public override System.Type StaticType { get { return default(System.Type); } } public System.Management.Automation.Language.StringConstantType StringConstantType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.StringConstantType); } } public new string Value { get { return default(string); } } - + } public enum StringConstantType { BareWord = 4, @@ -6994,7 +6994,7 @@ public enum StringConstantType { public class StringExpandableToken : System.Management.Automation.Language.StringToken { internal StringExpandableToken() { } public System.Collections.ObjectModel.ReadOnlyCollection NestedTokens { get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } - + } public class StringLiteralToken : System.Management.Automation.Language.StringToken { internal StringLiteralToken() { } @@ -7002,13 +7002,13 @@ internal StringLiteralToken() { } public abstract class StringToken : System.Management.Automation.Language.Token { internal StringToken() { } public string Value { get { return default(string); } } - + } public class SubExpressionAst : System.Management.Automation.Language.ExpressionAst { public SubExpressionAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.StatementBlockAst statementBlock) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.StatementBlockAst SubExpression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.StatementBlockAst); } } - + } [System.FlagsAttribute] public enum SwitchFlags { @@ -7022,18 +7022,18 @@ public enum SwitchFlags { } public class SwitchStatementAst : System.Management.Automation.Language.LabeledStatementAst { public SwitchStatementAst(System.Management.Automation.Language.IScriptExtent extent, string label, System.Management.Automation.Language.PipelineBaseAst condition, System.Management.Automation.Language.SwitchFlags flags, System.Collections.Generic.IEnumerable> clauses, System.Management.Automation.Language.StatementBlockAst @default) : base (default(System.Management.Automation.Language.IScriptExtent), default(string), default(System.Management.Automation.Language.PipelineBaseAst)) { } - + public System.Collections.ObjectModel.ReadOnlyCollection> Clauses { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection>); } } public System.Management.Automation.Language.StatementBlockAst Default { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.StatementBlockAst); } } public System.Management.Automation.Language.SwitchFlags Flags { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.SwitchFlags); } } - + } public class ThrowStatementAst : System.Management.Automation.Language.StatementAst { public ThrowStatementAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.PipelineBaseAst pipeline) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public bool IsRethrow { get { return default(bool); } } public System.Management.Automation.Language.PipelineBaseAst Pipeline { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.PipelineBaseAst); } } - + } public class Token { internal Token() { } @@ -7042,7 +7042,7 @@ internal Token() { } public System.Management.Automation.Language.TokenKind Kind { get { return default(System.Management.Automation.Language.TokenKind); } } public string Text { get { return default(string); } } public System.Management.Automation.Language.TokenFlags TokenFlags { get { return default(System.Management.Automation.Language.TokenFlags); } } - + public override string ToString() { return default(string); } } [System.FlagsAttribute] @@ -7217,18 +7217,18 @@ public static class TokenTraits { } public class TrapStatementAst : System.Management.Automation.Language.StatementAst { public TrapStatementAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.TypeConstraintAst trapType, System.Management.Automation.Language.StatementBlockAst body) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.StatementBlockAst Body { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.StatementBlockAst); } } public System.Management.Automation.Language.TypeConstraintAst TrapType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.TypeConstraintAst); } } - + } public class TryStatementAst : System.Management.Automation.Language.StatementAst { public TryStatementAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.StatementBlockAst body, System.Collections.Generic.IEnumerable catchClauses, System.Management.Automation.Language.StatementBlockAst @finally) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.StatementBlockAst Body { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.StatementBlockAst); } } public System.Collections.ObjectModel.ReadOnlyCollection CatchClauses { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Collections.ObjectModel.ReadOnlyCollection); } } public System.Management.Automation.Language.StatementBlockAst Finally { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.StatementBlockAst); } } - + } public class TypeConstraintAst : System.Management.Automation.Language.AttributeBaseAst { public TypeConstraintAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.ITypeName typeName) : base (default(System.Management.Automation.Language.IScriptExtent), default(System.Management.Automation.Language.ITypeName)) { } @@ -7236,55 +7236,55 @@ public class TypeConstraintAst : System.Management.Automation.Language.Attribute } public class TypeExpressionAst : System.Management.Automation.Language.ExpressionAst { public TypeExpressionAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.ITypeName typeName) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public override System.Type StaticType { get { return default(System.Type); } } public System.Management.Automation.Language.ITypeName TypeName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ITypeName); } } - + } public sealed class TypeName : System.Management.Automation.Language.ITypeName { public TypeName(System.Management.Automation.Language.IScriptExtent extent, string name) { } public TypeName(System.Management.Automation.Language.IScriptExtent extent, string name, string assembly) { } - + public string AssemblyName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(string); } } public System.Management.Automation.Language.IScriptExtent Extent { get { return default(System.Management.Automation.Language.IScriptExtent); } } public string FullName { get { return default(string); } } public bool IsArray { get { return default(bool); } } public bool IsGeneric { get { return default(bool); } } public string Name { get { return default(string); } } - + public System.Type GetReflectionAttributeType() { return default(System.Type); } public System.Type GetReflectionType() { return default(System.Type); } public override string ToString() { return default(string); } } public class UnaryExpressionAst : System.Management.Automation.Language.ExpressionAst { public UnaryExpressionAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.TokenKind tokenKind, System.Management.Automation.Language.ExpressionAst child) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.ExpressionAst Child { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ExpressionAst); } } public override System.Type StaticType { get { return default(System.Type); } } public System.Management.Automation.Language.TokenKind TokenKind { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.TokenKind); } } - + } public class UsingExpressionAst : System.Management.Automation.Language.ExpressionAst { public UsingExpressionAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.Language.ExpressionAst expressionAst) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public System.Management.Automation.Language.ExpressionAst SubExpression { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.Language.ExpressionAst); } } - + public static System.Management.Automation.Language.VariableExpressionAst ExtractUsingVariable(System.Management.Automation.Language.UsingExpressionAst usingExpressionAst) { return default(System.Management.Automation.Language.VariableExpressionAst); } } public class VariableExpressionAst : System.Management.Automation.Language.ExpressionAst { public VariableExpressionAst(System.Management.Automation.Language.IScriptExtent extent, System.Management.Automation.VariablePath variablePath, bool splatted) : base (default(System.Management.Automation.Language.IScriptExtent)) { } public VariableExpressionAst(System.Management.Automation.Language.IScriptExtent extent, string variableName, bool splatted) : base (default(System.Management.Automation.Language.IScriptExtent)) { } - + public bool Splatted { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(bool); } } public System.Management.Automation.VariablePath VariablePath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.VariablePath); } } - + public bool IsConstantVariable() { return default(bool); } } public class VariableToken : System.Management.Automation.Language.Token { internal VariableToken() { } public string Name { get { return default(string); } } public System.Management.Automation.VariablePath VariablePath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { return default(System.Management.Automation.VariablePath); } } - + } public class WhileStatementAst : System.Management.Automation.Language.LoopStatementAst { public WhileStatementAst(System.Management.Automation.Language.IScriptExtent extent, string label, System.Management.Automation.Language.PipelineBaseAst condition, System.Management.Automation.Language.StatementBlockAst body) : base (default(System.Management.Automation.Language.IScriptExtent), default(string), default(System.Management.Automation.Language.PipelineBaseAst), default(System.Management.Automation.Language.StatementBlockAst)) { } @@ -7296,19 +7296,19 @@ namespace System.Management.Automation.PerformanceData { public partial struct CounterInfo { public CounterInfo(int id, System.Diagnostics.PerformanceData.CounterType type) { throw new System.NotImplementedException(); } public CounterInfo(int id, System.Diagnostics.PerformanceData.CounterType type, string name) { throw new System.NotImplementedException(); } - + public int Id { get { return default(int); } } public string Name { get { return default(string); } } public System.Diagnostics.PerformanceData.CounterType Type { get { return default(System.Diagnostics.PerformanceData.CounterType); } } - + } public abstract class CounterSetInstanceBase : System.IDisposable { protected System.Collections.Concurrent.ConcurrentDictionary _counterIdToTypeMapping; protected System.Collections.Concurrent.ConcurrentDictionary _counterNameToIdMapping; protected System.Management.Automation.PerformanceData.CounterSetRegistrarBase _counterSetRegistrarBase; - + protected CounterSetInstanceBase(System.Management.Automation.PerformanceData.CounterSetRegistrarBase counterSetRegistrarInst) { } - + public abstract void Dispose(); public abstract bool GetCounterValue(int counterId, bool isNumerator, out long counterValue); public abstract bool GetCounterValue(string counterName, bool isNumerator, out long counterValue); @@ -7320,23 +7320,23 @@ protected CounterSetInstanceBase(System.Management.Automation.PerformanceData.Co } public abstract class CounterSetRegistrarBase { protected System.Management.Automation.PerformanceData.CounterSetInstanceBase _counterSetInstanceBase; - + protected CounterSetRegistrarBase(System.Guid providerId, System.Guid counterSetId, System.Diagnostics.PerformanceData.CounterSetInstanceType counterSetInstType, System.Management.Automation.PerformanceData.CounterInfo[] counterInfoArray, string counterSetName=null) { } protected CounterSetRegistrarBase(System.Management.Automation.PerformanceData.CounterSetRegistrarBase srcCounterSetRegistrarBase) { } - + public System.Management.Automation.PerformanceData.CounterInfo[] CounterInfoArray { get { return default(System.Management.Automation.PerformanceData.CounterInfo[]); } } public System.Guid CounterSetId { get { return default(System.Guid); } } public System.Management.Automation.PerformanceData.CounterSetInstanceBase CounterSetInstance { get { return default(System.Management.Automation.PerformanceData.CounterSetInstanceBase); } } public System.Diagnostics.PerformanceData.CounterSetInstanceType CounterSetInstType { get { return default(System.Diagnostics.PerformanceData.CounterSetInstanceType); } } public string CounterSetName { get { return default(string); } } public System.Guid ProviderId { get { return default(System.Guid); } } - + protected abstract System.Management.Automation.PerformanceData.CounterSetInstanceBase CreateCounterSetInstance(); public abstract void DisposeCounterSetInstance(); } public class PSCounterSetInstance : System.Management.Automation.PerformanceData.CounterSetInstanceBase { public PSCounterSetInstance(System.Management.Automation.PerformanceData.CounterSetRegistrarBase counterSetRegBaseObj) : base (default(System.Management.Automation.PerformanceData.CounterSetRegistrarBase)) { } - + public override void Dispose() { } protected virtual void Dispose(bool disposing) { } ~PSCounterSetInstance() { } @@ -7350,14 +7350,14 @@ protected virtual void Dispose(bool disposing) { } public class PSCounterSetRegistrar : System.Management.Automation.PerformanceData.CounterSetRegistrarBase { public PSCounterSetRegistrar(System.Guid providerId, System.Guid counterSetId, System.Diagnostics.PerformanceData.CounterSetInstanceType counterSetInstType, System.Management.Automation.PerformanceData.CounterInfo[] counterInfoArray, string counterSetName=null) : base (default(System.Guid), default(System.Guid), default(System.Diagnostics.PerformanceData.CounterSetInstanceType), default(System.Management.Automation.PerformanceData.CounterInfo[]), default(string)) { } public PSCounterSetRegistrar(System.Management.Automation.PerformanceData.PSCounterSetRegistrar srcPSCounterSetRegistrar) : base (default(System.Guid), default(System.Guid), default(System.Diagnostics.PerformanceData.CounterSetInstanceType), default(System.Management.Automation.PerformanceData.CounterInfo[]), default(string)) { } - + protected override System.Management.Automation.PerformanceData.CounterSetInstanceBase CreateCounterSetInstance() { return default(System.Management.Automation.PerformanceData.CounterSetInstanceBase); } public override void DisposeCounterSetInstance() { } } public class PSPerfCountersMgr { internal PSPerfCountersMgr() { } public static System.Management.Automation.PerformanceData.PSPerfCountersMgr Instance { get { return default(System.Management.Automation.PerformanceData.PSPerfCountersMgr); } } - + public bool AddCounterSetInstance(System.Management.Automation.PerformanceData.CounterSetRegistrarBase counterSetRegistrarInstance) { return default(bool); } ~PSPerfCountersMgr() { } public string GetCounterSetInstanceName() { return default(string); } @@ -7377,7 +7377,7 @@ internal PSPerfCountersMgr() { } namespace System.Management.Automation.Provider { public abstract class CmdletProvider : System.Management.Automation.IResourceSupplier { protected CmdletProvider() { } - + public System.Management.Automation.PSCredential Credential { get { return default(System.Management.Automation.PSCredential); } } #if TRANSACTIONS public System.Management.Automation.PSTransactionContext CurrentPSTransaction { get { return default(System.Management.Automation.PSTransactionContext); } } @@ -7394,7 +7394,7 @@ protected CmdletProvider() { } protected System.Management.Automation.PSDriveInfo PSDriveInfo { get { return default(System.Management.Automation.PSDriveInfo); } } public System.Management.Automation.SessionState SessionState { get { return default(System.Management.Automation.SessionState); } } public bool Stopping { get { return default(bool); } } - + public virtual string GetResourceString(string baseName, string resourceId) { return default(string); } public bool ShouldContinue(string query, string caption) { return default(bool); } public bool ShouldContinue(string query, string caption, ref bool yesToAll, ref bool noToAll) { return default(bool); } @@ -7420,14 +7420,14 @@ public void WriteWarning(string text) { } [System.AttributeUsageAttribute((AttributeTargets)4, AllowMultiple=false, Inherited=false)] public sealed class CmdletProviderAttribute : System.Attribute { public CmdletProviderAttribute(string providerName, System.Management.Automation.Provider.ProviderCapabilities providerCapabilities) { } - + public System.Management.Automation.Provider.ProviderCapabilities ProviderCapabilities { get { return default(System.Management.Automation.Provider.ProviderCapabilities); } } public string ProviderName { get { return default(string); } } - + } public abstract class ContainerCmdletProvider : System.Management.Automation.Provider.ItemCmdletProvider { protected ContainerCmdletProvider() { } - + protected virtual bool ConvertPath(string path, string filter, ref string updatedPath, ref string updatedFilter) { return default(bool); } protected virtual void CopyItem(string path, string copyPath, bool recurse) { } protected virtual object CopyItemDynamicParameters(string path, string destination, bool recurse) { return default(object); } @@ -7445,7 +7445,7 @@ protected virtual void RenameItem(string path, string newName) { } } public abstract class DriveCmdletProvider : System.Management.Automation.Provider.CmdletProvider { protected DriveCmdletProvider() { } - + protected virtual System.Collections.ObjectModel.Collection InitializeDefaultDrives() { return default(System.Collections.ObjectModel.Collection); } protected virtual System.Management.Automation.PSDriveInfo NewDrive(System.Management.Automation.PSDriveInfo drive) { return default(System.Management.Automation.PSDriveInfo); } protected virtual object NewDriveDynamicParameters() { return default(object); } @@ -7500,7 +7500,7 @@ public partial interface ISecurityDescriptorCmdletProvider { } public abstract class ItemCmdletProvider : System.Management.Automation.Provider.DriveCmdletProvider { protected ItemCmdletProvider() { } - + protected virtual void ClearItem(string path) { } protected virtual object ClearItemDynamicParameters(string path) { return default(object); } protected virtual string[] ExpandPath(string path) { return default(string[]); } @@ -7516,7 +7516,7 @@ protected virtual void SetItem(string path, object value) { } } public abstract class NavigationCmdletProvider : System.Management.Automation.Provider.ContainerCmdletProvider { protected NavigationCmdletProvider() { } - + protected virtual string GetChildName(string path) { return default(string); } protected virtual string GetParentPath(string path, string root) { return default(string); } protected virtual bool IsItemContainer(string path) { return default(bool); } @@ -7542,11 +7542,11 @@ namespace System.Management.Automation.Remoting { public class OriginInfo { public OriginInfo(string computerName, System.Guid runspaceID) { } public OriginInfo(string computerName, System.Guid runspaceID, System.Guid instanceID) { } - + public System.Guid InstanceID { get { return default(System.Guid); } set { } } public string PSComputerName { get { return default(string); } } public System.Guid RunspaceID { get { return default(System.Guid); } } - + public override string ToString() { return default(string); } } public enum ProxyAccessType { @@ -7558,28 +7558,28 @@ public enum ProxyAccessType { } public sealed class PSCertificateDetails { public PSCertificateDetails(string subject, string issuerName, string issuerThumbprint) { } - + public string IssuerName { get { return default(string); } } public string IssuerThumbprint { get { return default(string); } } public string Subject { get { return default(string); } } - + } public sealed class PSIdentity : System.Security.Principal.IIdentity { public PSIdentity(string authType, bool isAuthenticated, string userName, System.Management.Automation.Remoting.PSCertificateDetails cert) { } - + public string AuthenticationType { get { return default(string); } } public System.Management.Automation.Remoting.PSCertificateDetails CertificateDetails { get { return default(System.Management.Automation.Remoting.PSCertificateDetails); } } public bool IsAuthenticated { get { return default(bool); } } public string Name { get { return default(string); } } - + } public sealed class PSPrincipal : System.Security.Principal.IPrincipal { public PSPrincipal(System.Management.Automation.Remoting.PSIdentity identity, System.Security.Principal.WindowsIdentity windowsIdentity) { } - + public System.Management.Automation.Remoting.PSIdentity Identity { get { return default(System.Management.Automation.Remoting.PSIdentity); } } System.Security.Principal.IIdentity System.Security.Principal.IPrincipal.Identity { get { return default(System.Security.Principal.IIdentity); } } public System.Security.Principal.WindowsIdentity WindowsIdentity { get { return default(System.Security.Principal.WindowsIdentity); } } - + public bool IsInRole(string role) { return default(bool); } } public class PSRemotingDataStructureException : System.Management.Automation.RuntimeException { @@ -7591,22 +7591,22 @@ public class PSRemotingTransportException : System.Management.Automation.Runtime public PSRemotingTransportException() { } public PSRemotingTransportException(string message) { } public PSRemotingTransportException(string message, System.Exception innerException) { } - + public int ErrorCode { get { return default(int); } set { } } public string TransportMessage { get { return default(string); } set { } } - + protected void SetDefaultErrorRecord() { } } public class PSRemotingTransportRedirectException : System.Management.Automation.Remoting.PSRemotingTransportException { public PSRemotingTransportRedirectException() { } public PSRemotingTransportRedirectException(string message) { } public PSRemotingTransportRedirectException(string message, System.Exception innerException) { } - + public string RedirectLocation { get { return default(string); } } } public sealed class PSSenderInfo { public PSSenderInfo(System.Management.Automation.Remoting.PSPrincipal userPrincipal, string httpUrl) { } - + public System.Management.Automation.PSPrimitiveDictionary ApplicationArguments { get { return default(System.Management.Automation.PSPrimitiveDictionary); } } #if TIMEZONE public System.TimeZone ClientTimeZone { get { return default(System.TimeZone); } } @@ -7616,7 +7616,7 @@ public PSSenderInfo(System.Management.Automation.Remoting.PSPrincipal userPrinci } public abstract class PSSessionConfiguration : System.IDisposable { protected PSSessionConfiguration() { } - + public void Dispose() { } protected virtual void Dispose(bool isDisposing) { } public virtual System.Management.Automation.PSPrimitiveDictionary GetApplicationPrivateData(System.Management.Automation.Remoting.PSSenderInfo senderInfo) { return default(System.Management.Automation.PSPrimitiveDictionary); } @@ -7628,14 +7628,14 @@ protected virtual void Dispose(bool isDisposing) { } public sealed class PSSessionConfigurationData { internal PSSessionConfigurationData() { } public static bool IsServerManager; - + public System.Collections.Generic.List ModulesToImport { get { return default(System.Collections.Generic.List); } } public string PrivateData { get { return default(string); } } - + } public sealed class PSSessionOption { public PSSessionOption() { } - + public System.Management.Automation.PSPrimitiveDictionary ApplicationArguments { get { return default(System.Management.Automation.PSPrimitiveDictionary); } set { } } public System.TimeSpan CancelTimeout { get { return default(System.TimeSpan); } set { } } public System.Globalization.CultureInfo Culture { get { return default(System.Globalization.CultureInfo); } set { } } @@ -7658,7 +7658,7 @@ public PSSessionOption() { } public bool SkipRevocationCheck { get { return default(bool); } set { } } public System.Globalization.CultureInfo UICulture { get { return default(System.Globalization.CultureInfo); } set { } } public bool UseUTF16 { get { return default(bool); } set { } } - + } public enum SessionType { Default = 2, @@ -7671,7 +7671,7 @@ namespace System.Management.Automation.Remoting.WSMan { public static class WSManServerChannelEvents { // Events public static event System.EventHandler ShuttingDown { add { } remove { } } - + } } #endif @@ -7679,18 +7679,18 @@ namespace System.Management.Automation.Runspaces { public sealed class AliasPropertyData : System.Management.Automation.Runspaces.TypeMemberData { public AliasPropertyData(string name, string referencedMemberName) { } public AliasPropertyData(string name, string referencedMemberName, System.Type type) { } - + public bool IsHidden { get { return default(bool); } set { } } public System.Type MemberType { get { return default(System.Type); } set { } } public string ReferencedMemberName { get { return default(string); } set { } } - + } #if V1_PIPELINE_API public sealed class AssemblyConfigurationEntry : System.Management.Automation.Runspaces.RunspaceConfigurationEntry { public AssemblyConfigurationEntry(string name, string fileName) : base (default(string)) { } - + public string FileName { get { return default(string); } } - + } #endif public enum AuthenticationMechanism { @@ -7705,38 +7705,38 @@ public enum AuthenticationMechanism { #if V1_PIPELINE_API public sealed class CmdletConfigurationEntry : System.Management.Automation.Runspaces.RunspaceConfigurationEntry { public CmdletConfigurationEntry(string name, System.Type implementingType, string helpFileName) : base (default(string)) { } - + public string HelpFileName { get { return default(string); } } public System.Type ImplementingType { get { return default(System.Type); } } - + } #endif public sealed class CodeMethodData : System.Management.Automation.Runspaces.TypeMemberData { public CodeMethodData(string name, System.Reflection.MethodInfo methodToCall) { } - + public System.Reflection.MethodInfo CodeReference { get { return default(System.Reflection.MethodInfo); } set { } } - + } public sealed class CodePropertyData : System.Management.Automation.Runspaces.TypeMemberData { public CodePropertyData(string name, System.Reflection.MethodInfo getMethod) { } public CodePropertyData(string name, System.Reflection.MethodInfo getMethod, System.Reflection.MethodInfo setMethod) { } - + public System.Reflection.MethodInfo GetCodeReference { get { return default(System.Reflection.MethodInfo); } set { } } public bool IsHidden { get { return default(bool); } set { } } public System.Reflection.MethodInfo SetCodeReference { get { return default(System.Reflection.MethodInfo); } set { } } - + } public sealed class Command { public Command(string command) { } public Command(string command, bool isScript) { } public Command(string command, bool isScript, bool useLocalScope) { } - + public string CommandText { get { return default(string); } } public bool IsScript { get { return default(bool); } } public System.Management.Automation.Runspaces.PipelineResultTypes MergeUnclaimedPreviousCommandResults { get { return default(System.Management.Automation.Runspaces.PipelineResultTypes); } set { } } public System.Management.Automation.Runspaces.CommandParameterCollection Parameters { get { return default(System.Management.Automation.Runspaces.CommandParameterCollection); } } public bool UseLocalScope { get { return default(bool); } } - + public void MergeMyResults(System.Management.Automation.Runspaces.PipelineResultTypes myResult, System.Management.Automation.Runspaces.PipelineResultTypes toResult) { } public override string ToString() { return default(string); } } @@ -7749,37 +7749,37 @@ public void AddScript(string scriptContents, bool useLocalScope) { } public sealed class CommandParameter { public CommandParameter(string name) { } public CommandParameter(string name, object value) { } - + public string Name { get { return default(string); } } public object Value { get { return default(object); } } - + } public sealed class CommandParameterCollection : System.Collections.ObjectModel.Collection { public CommandParameterCollection() { } - + public void Add(string name) { } public void Add(string name, object value) { } } public abstract class ConstrainedSessionStateEntry : System.Management.Automation.Runspaces.InitialSessionStateEntry { protected ConstrainedSessionStateEntry(string name, System.Management.Automation.SessionStateEntryVisibility visibility) : base (default(string)) { } - + public System.Management.Automation.SessionStateEntryVisibility Visibility { get { return default(System.Management.Automation.SessionStateEntryVisibility); } set { } } - + } #if V1_PIPELINE_API public sealed class FormatConfigurationEntry : System.Management.Automation.Runspaces.RunspaceConfigurationEntry { public FormatConfigurationEntry(System.Management.Automation.ExtendedTypeDefinition typeDefinition) : base (default(string)) { } public FormatConfigurationEntry(string fileName) : base (default(string)) { } public FormatConfigurationEntry(string name, string fileName) : base (default(string)) { } - + public string FileName { get { return default(string); } } public System.Management.Automation.ExtendedTypeDefinition FormatData { get { return default(System.Management.Automation.ExtendedTypeDefinition); } } - + } #endif public sealed class FormatTable { public FormatTable(System.Collections.Generic.IEnumerable formatFiles) { } - + public void AppendFormatData(System.Collections.Generic.IEnumerable formatData) { } public static System.Management.Automation.Runspaces.FormatTable LoadDefaultFormatFiles() { return default(System.Management.Automation.Runspaces.FormatTable); } public void PrependFormatData(System.Collections.Generic.IEnumerable formatData) { } @@ -7788,14 +7788,14 @@ public class FormatTableLoadException : System.Management.Automation.RuntimeExce public FormatTableLoadException() { } public FormatTableLoadException(string message) { } public FormatTableLoadException(string message, System.Exception innerException) { } - + public System.Collections.ObjectModel.Collection Errors { get { return default(System.Collections.ObjectModel.Collection); } } - + protected void SetDefaultErrorRecord() { } } public class InitialSessionState { protected InitialSessionState() { } - + #if COM_APARTMENT_STATE public System.Threading.ApartmentState ApartmentState { get { return default(System.Threading.ApartmentState); } set { } } #endif @@ -7812,7 +7812,7 @@ protected InitialSessionState() { } public virtual System.Management.Automation.Runspaces.InitialSessionStateEntryCollection Types { get { return default(System.Management.Automation.Runspaces.InitialSessionStateEntryCollection); } } public bool UseFullLanguageModeInDebugger { get { return default(bool); } set { } } public virtual System.Management.Automation.Runspaces.InitialSessionStateEntryCollection Variables { get { return default(System.Management.Automation.Runspaces.InitialSessionStateEntryCollection); } } - + public System.Management.Automation.Runspaces.InitialSessionState Clone() { return default(System.Management.Automation.Runspaces.InitialSessionState); } public static System.Management.Automation.Runspaces.InitialSessionState Create() { return default(System.Management.Automation.Runspaces.InitialSessionState); } public static System.Management.Automation.Runspaces.InitialSessionState Create(string snapInName) { return default(System.Management.Automation.Runspaces.InitialSessionState); } @@ -7827,20 +7827,20 @@ public void ImportPSModulesFromPath(string path) { } } public abstract class InitialSessionStateEntry { protected InitialSessionStateEntry(string name) { } - + public System.Management.Automation.PSModuleInfo Module { get { return default(System.Management.Automation.PSModuleInfo); } } public string Name { get { return default(string); } } - + public abstract System.Management.Automation.Runspaces.InitialSessionStateEntry Clone(); } public sealed class InitialSessionStateEntryCollection : System.Collections.Generic.IEnumerable, System.Collections.IEnumerable where T : System.Management.Automation.Runspaces.InitialSessionStateEntry { public InitialSessionStateEntryCollection() { } public InitialSessionStateEntryCollection(System.Collections.Generic.IEnumerable items) { } - + public int Count { get { return default(int); } } public T this[int index] { get { return default(T); } } public System.Collections.ObjectModel.Collection this[string name] { get { return default(System.Collections.ObjectModel.Collection); } } - + public void Add(T item) { } public void Add(System.Collections.Generic.IEnumerable items) { } public void Clear() { } @@ -7856,7 +7856,7 @@ public class InvalidPipelineStateException : System.Exception { public InvalidPipelineStateException() { } public InvalidPipelineStateException(string message) { } public InvalidPipelineStateException(string message, System.Exception innerException) { } - + public System.Management.Automation.Runspaces.PipelineState CurrentState { get { return default(System.Management.Automation.Runspaces.PipelineState); } } public System.Management.Automation.Runspaces.PipelineState ExpectedState { get { return default(System.Management.Automation.Runspaces.PipelineState); } } } @@ -7864,26 +7864,26 @@ public class InvalidRunspacePoolStateException : System.Exception { public InvalidRunspacePoolStateException() { } public InvalidRunspacePoolStateException(string message) { } public InvalidRunspacePoolStateException(string message, System.Exception innerException) { } - + public System.Management.Automation.Runspaces.RunspacePoolState CurrentState { get { return default(System.Management.Automation.Runspaces.RunspacePoolState); } } public System.Management.Automation.Runspaces.RunspacePoolState ExpectedState { get { return default(System.Management.Automation.Runspaces.RunspacePoolState); } } - + } public class InvalidRunspaceStateException : System.Exception { public InvalidRunspaceStateException() { } public InvalidRunspaceStateException(string message) { } public InvalidRunspaceStateException(string message, System.Exception innerException) { } - + public System.Management.Automation.Runspaces.RunspaceState CurrentState { get { return default(System.Management.Automation.Runspaces.RunspaceState); } } public System.Management.Automation.Runspaces.RunspaceState ExpectedState { get { return default(System.Management.Automation.Runspaces.RunspaceState); } } - + } public sealed class NotePropertyData : System.Management.Automation.Runspaces.TypeMemberData { public NotePropertyData(string name, object value) { } - + public bool IsHidden { get { return default(bool); } set { } } public object Value { get { return default(object); } set { } } - + } public enum OutputBufferingMode { Block = 2, @@ -7903,10 +7903,10 @@ internal Pipeline() { } public abstract System.Management.Automation.Runspaces.PipelineStateInfo PipelineStateInfo { get; } public abstract System.Management.Automation.Runspaces.Runspace Runspace { get; } public bool SetPipelineSessionState { get { return default(bool); } set { } } - + // Events public abstract event System.EventHandler StateChanged; - + public abstract System.Collections.ObjectModel.Collection Connect(); public abstract void ConnectAsync(); public abstract System.Management.Automation.Runspaces.Pipeline Copy(); @@ -7920,16 +7920,16 @@ protected virtual void Dispose(bool disposing) { } } public abstract class PipelineReader { protected PipelineReader() { } - + public abstract int Count { get; } public abstract bool EndOfPipeline { get; } public abstract bool IsOpen { get; } public abstract int MaxCapacity { get; } public abstract System.Threading.WaitHandle WaitHandle { get; } - + // Events public abstract event System.EventHandler DataReady; - + public abstract void Close(); public abstract System.Collections.ObjectModel.Collection NonBlockingRead(); public abstract System.Collections.ObjectModel.Collection NonBlockingRead(int maxRequested); @@ -7963,22 +7963,22 @@ public enum PipelineState { public sealed class PipelineStateEventArgs : System.EventArgs { internal PipelineStateEventArgs() { } public System.Management.Automation.Runspaces.PipelineStateInfo PipelineStateInfo { get { return default(System.Management.Automation.Runspaces.PipelineStateInfo); } } - + } public sealed class PipelineStateInfo { internal PipelineStateInfo() { } public System.Exception Reason { get { return default(System.Exception); } } public System.Management.Automation.Runspaces.PipelineState State { get { return default(System.Management.Automation.Runspaces.PipelineState); } } - + } public abstract class PipelineWriter { protected PipelineWriter() { } - + public abstract int Count { get; } public abstract bool IsOpen { get; } public abstract int MaxCapacity { get; } public abstract System.Threading.WaitHandle WaitHandle { get; } - + public abstract void Close(); public abstract void Flush(); public abstract int Write(object obj); @@ -7987,33 +7987,33 @@ protected PipelineWriter() { } public sealed class PowerShellProcessInstance : System.IDisposable { public PowerShellProcessInstance() { } public PowerShellProcessInstance(System.Version powerShellVersion, System.Management.Automation.PSCredential credential, System.Management.Automation.ScriptBlock initializationScript, bool useWow64) { } - + public bool HasExited { get { return default(bool); } } public System.Diagnostics.Process Process { get { return default(System.Diagnostics.Process); } } - + public void Dispose() { } } #endif // V1_PIPELINE_API public sealed class PropertySetData { public PropertySetData(System.Collections.Generic.IEnumerable referencedProperties) { } - + public System.Collections.ObjectModel.Collection ReferencedProperties { get { return default(System.Collections.ObjectModel.Collection); } } - + } #if V1_PIPELINE_API public sealed class ProviderConfigurationEntry : System.Management.Automation.Runspaces.RunspaceConfigurationEntry { public ProviderConfigurationEntry(string name, System.Type implementingType, string helpFileName) : base (default(string)) { } - + public string HelpFileName { get { return default(string); } } public System.Type ImplementingType { get { return default(System.Type); } } - + } #endif public class PSConsoleLoadException : System.Exception, System.Management.Automation.IContainsErrorRecord { public PSConsoleLoadException() { } public PSConsoleLoadException(string message) { } public PSConsoleLoadException(string message, System.Exception innerException) { } - + public System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } public override string Message { get { return default(string); } } } @@ -8027,7 +8027,7 @@ internal PSSession() { } public System.Guid InstanceId { get { return default(System.Guid); } } public string Name { get { return default(string); } set { } } public System.Management.Automation.Runspaces.Runspace Runspace { get { return default(System.Management.Automation.Runspaces.Runspace); } } - + public override string ToString() { return default(string); } } public enum PSSessionConfigurationAccessMode { @@ -8048,35 +8048,35 @@ public enum PSThreadOptions { [System.Runtime.Serialization.DataContractAttribute] public class RemotingDebugRecord : System.Management.Automation.DebugRecord { public RemotingDebugRecord(string message, System.Management.Automation.Remoting.OriginInfo originInfo) : base (default(string)) { } - + public System.Management.Automation.Remoting.OriginInfo OriginInfo { get { return default(System.Management.Automation.Remoting.OriginInfo); } } - + } public class RemotingErrorRecord : System.Management.Automation.ErrorRecord { public RemotingErrorRecord(System.Management.Automation.ErrorRecord errorRecord, System.Management.Automation.Remoting.OriginInfo originInfo) : base (default(System.Exception), default(string), default(System.Management.Automation.ErrorCategory), default(object)) { } - + public System.Management.Automation.Remoting.OriginInfo OriginInfo { get { return default(System.Management.Automation.Remoting.OriginInfo); } } } [System.Runtime.Serialization.DataContractAttribute] public class RemotingProgressRecord : System.Management.Automation.ProgressRecord { public RemotingProgressRecord(System.Management.Automation.ProgressRecord progressRecord, System.Management.Automation.Remoting.OriginInfo originInfo) : base (default(int), default(string), default(string)) { } - + public System.Management.Automation.Remoting.OriginInfo OriginInfo { get { return default(System.Management.Automation.Remoting.OriginInfo); } } - + } [System.Runtime.Serialization.DataContractAttribute] public class RemotingVerboseRecord : System.Management.Automation.VerboseRecord { public RemotingVerboseRecord(string message, System.Management.Automation.Remoting.OriginInfo originInfo) : base (default(string)) { } - + public System.Management.Automation.Remoting.OriginInfo OriginInfo { get { return default(System.Management.Automation.Remoting.OriginInfo); } } - + } [System.Runtime.Serialization.DataContractAttribute] public class RemotingWarningRecord : System.Management.Automation.WarningRecord { public RemotingWarningRecord(string message, System.Management.Automation.Remoting.OriginInfo originInfo) : base (default(string)) { } - + public System.Management.Automation.Remoting.OriginInfo OriginInfo { get { return default(System.Management.Automation.Remoting.OriginInfo); } } - + } public abstract class Runspace : System.IDisposable { internal Runspace() { } @@ -8099,11 +8099,11 @@ internal Runspace() { } public System.Management.Automation.Runspaces.SessionStateProxy SessionStateProxy { get { return default(System.Management.Automation.Runspaces.SessionStateProxy); } } public abstract System.Management.Automation.Runspaces.PSThreadOptions ThreadOptions { get; set; } public abstract System.Version Version { get; } - + // Events public abstract event System.EventHandler AvailabilityChanged; public abstract event System.EventHandler StateChanged; - + public void ClearBaseTransaction() { } public abstract void Close(); public abstract void CloseAsync(); @@ -8148,7 +8148,7 @@ public enum RunspaceAvailability { public sealed class RunspaceAvailabilityEventArgs : System.EventArgs { internal RunspaceAvailabilityEventArgs() { } public System.Management.Automation.Runspaces.RunspaceAvailability RunspaceAvailability { get { return default(System.Management.Automation.Runspaces.RunspaceAvailability); } } - + } public enum RunspaceCapability { Default = 0, @@ -8157,7 +8157,7 @@ public enum RunspaceCapability { #if V1_PIPELINE_API public abstract class RunspaceConfiguration { protected RunspaceConfiguration() { } - + public virtual System.Management.Automation.Runspaces.RunspaceConfigurationEntryCollection Assemblies { get { return default(System.Management.Automation.Runspaces.RunspaceConfigurationEntryCollection); } } public virtual System.Management.Automation.AuthorizationManager AuthorizationManager { get { return default(System.Management.Automation.AuthorizationManager); } } public virtual System.Management.Automation.Runspaces.RunspaceConfigurationEntryCollection Cmdlets { get { return default(System.Management.Automation.Runspaces.RunspaceConfigurationEntryCollection); } } @@ -8167,7 +8167,7 @@ protected RunspaceConfiguration() { } public virtual System.Management.Automation.Runspaces.RunspaceConfigurationEntryCollection Scripts { get { return default(System.Management.Automation.Runspaces.RunspaceConfigurationEntryCollection); } } public abstract string ShellId { get; } public virtual System.Management.Automation.Runspaces.RunspaceConfigurationEntryCollection Types { get { return default(System.Management.Automation.Runspaces.RunspaceConfigurationEntryCollection); } } - + public System.Management.Automation.PSSnapInInfo AddPSSnapIn(string name, out System.Management.Automation.Runspaces.PSSnapInException warning) { warning = default(System.Management.Automation.Runspaces.PSSnapInException); return default(System.Management.Automation.PSSnapInInfo); } public static System.Management.Automation.Runspaces.RunspaceConfiguration Create() { return default(System.Management.Automation.Runspaces.RunspaceConfiguration); } public static System.Management.Automation.Runspaces.RunspaceConfiguration Create(string assemblyName) { return default(System.Management.Automation.Runspaces.RunspaceConfiguration); } @@ -8179,7 +8179,7 @@ public class RunspaceConfigurationAttributeException : System.Exception, System. public RunspaceConfigurationAttributeException() { } public RunspaceConfigurationAttributeException(string message) { } public RunspaceConfigurationAttributeException(string message, System.Exception innerException) { } - + public string AssemblyName { get { return default(string); } } public string Error { get { return default(string); } } public System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } @@ -8187,19 +8187,19 @@ public RunspaceConfigurationAttributeException(string message, System.Exception } public abstract class RunspaceConfigurationEntry { protected RunspaceConfigurationEntry(string name) { } - + public bool BuiltIn { get { return default(bool); } } public string Name { get { return default(string); } } public System.Management.Automation.PSSnapInInfo PSSnapIn { get { return default(System.Management.Automation.PSSnapInInfo); } } - + } public sealed class RunspaceConfigurationEntryCollection : System.Collections.Generic.IEnumerable, System.Collections.IEnumerable where T : System.Management.Automation.Runspaces.RunspaceConfigurationEntry { public RunspaceConfigurationEntryCollection() { } public RunspaceConfigurationEntryCollection(System.Collections.Generic.IEnumerable items) { } - + public int Count { get { return default(int); } } public T this[int index] { get { return default(T); } } - + public void Append(T item) { } public void Append(System.Collections.Generic.IEnumerable items) { } public void Prepend(T item) { } @@ -8214,16 +8214,16 @@ public void Update() { } [System.AttributeUsageAttribute((AttributeTargets)1)] public sealed class RunspaceConfigurationTypeAttribute : System.Attribute { public RunspaceConfigurationTypeAttribute(string runspaceConfigurationType) { } - + public string RunspaceConfigurationType { get { return default(string); } } - + } public class RunspaceConfigurationTypeException : System.Exception, System.Management.Automation.IContainsErrorRecord { public RunspaceConfigurationTypeException() { } public RunspaceConfigurationTypeException(string message) { } public RunspaceConfigurationTypeException(string message, System.Exception innerException) { } - + public string AssemblyName { get { return default(string); } } public System.Management.Automation.ErrorRecord ErrorRecord { get { return default(System.Management.Automation.ErrorRecord); } } public override string Message { get { return default(string); } } @@ -8232,7 +8232,7 @@ public RunspaceConfigurationTypeException(string message, System.Exception inner #endif // V1_PIPELINE_API public abstract class RunspaceConnectionInfo { protected RunspaceConnectionInfo() { } - + public abstract System.Management.Automation.Runspaces.AuthenticationMechanism AuthenticationMechanism { get; set; } public int CancelTimeout { get { return default(int); } set { } } public abstract string CertificateThumbprint { get; set; } @@ -8243,7 +8243,7 @@ protected RunspaceConnectionInfo() { } public int OpenTimeout { get { return default(int); } set { } } public int OperationTimeout { get { return default(int); } set { } } public System.Globalization.CultureInfo UICulture { get { return default(System.Globalization.CultureInfo); } set { } } - + public virtual void SetSessionOptions(System.Management.Automation.Remoting.PSSessionOption options) { } } public static class RunspaceFactory { @@ -8279,7 +8279,7 @@ public class RunspaceOpenModuleLoadException : System.Management.Automation.Runt public RunspaceOpenModuleLoadException() { } public RunspaceOpenModuleLoadException(string message) { } public RunspaceOpenModuleLoadException(string message, System.Exception innerException) { } - + public System.Management.Automation.PSDataCollection ErrorRecords { get { return default(System.Management.Automation.PSDataCollection); } } } public sealed class RunspacePool : System.IDisposable { @@ -8295,10 +8295,10 @@ internal RunspacePool() { } public System.Management.Automation.Runspaces.RunspacePoolAvailability RunspacePoolAvailability { get { return default(System.Management.Automation.Runspaces.RunspacePoolAvailability); } } public System.Management.Automation.RunspacePoolStateInfo RunspacePoolStateInfo { get { return default(System.Management.Automation.RunspacePoolStateInfo); } } public System.Management.Automation.Runspaces.PSThreadOptions ThreadOptions { get { return default(System.Management.Automation.Runspaces.PSThreadOptions); } set { } } - + // Events public event System.EventHandler StateChanged { add { } remove { } } - + public System.IAsyncResult BeginClose(System.AsyncCallback callback, object state) { return default(System.IAsyncResult); } public System.IAsyncResult BeginConnect(System.AsyncCallback callback, object state) { return default(System.IAsyncResult); } public System.IAsyncResult BeginDisconnect(System.AsyncCallback callback, object state) { return default(System.IAsyncResult); } @@ -8347,7 +8347,7 @@ public enum RunspacePoolState { public sealed class RunspacePoolStateChangedEventArgs : System.EventArgs { internal RunspacePoolStateChangedEventArgs() { } public System.Management.Automation.RunspacePoolStateInfo RunspacePoolStateInfo { get { return default(System.Management.Automation.RunspacePoolStateInfo); } } - + } public enum RunspaceState { BeforeOpen = 0, @@ -8363,107 +8363,107 @@ public enum RunspaceState { public sealed class RunspaceStateEventArgs : System.EventArgs { internal RunspaceStateEventArgs() { } public System.Management.Automation.Runspaces.RunspaceStateInfo RunspaceStateInfo { get { return default(System.Management.Automation.Runspaces.RunspaceStateInfo); } } - + } public sealed class RunspaceStateInfo { internal RunspaceStateInfo() { } public System.Exception Reason { get { return default(System.Exception); } } public System.Management.Automation.Runspaces.RunspaceState State { get { return default(System.Management.Automation.Runspaces.RunspaceState); } } - + public override string ToString() { return default(string); } } #if V1_PIPELINE_API public sealed class ScriptConfigurationEntry : System.Management.Automation.Runspaces.RunspaceConfigurationEntry { public ScriptConfigurationEntry(string name, string definition) : base (default(string)) { } - + public string Definition { get { return default(string); } } - + } #endif public sealed class ScriptMethodData : System.Management.Automation.Runspaces.TypeMemberData { public ScriptMethodData(string name, System.Management.Automation.ScriptBlock scriptToInvoke) { } - + public System.Management.Automation.ScriptBlock Script { get { return default(System.Management.Automation.ScriptBlock); } set { } } - + } public sealed class ScriptPropertyData : System.Management.Automation.Runspaces.TypeMemberData { public ScriptPropertyData(string name, System.Management.Automation.ScriptBlock getScriptBlock) { } public ScriptPropertyData(string name, System.Management.Automation.ScriptBlock getScriptBlock, System.Management.Automation.ScriptBlock setScriptBlock) { } - + public System.Management.Automation.ScriptBlock GetScriptBlock { get { return default(System.Management.Automation.ScriptBlock); } set { } } public bool IsHidden { get { return default(bool); } set { } } public System.Management.Automation.ScriptBlock SetScriptBlock { get { return default(System.Management.Automation.ScriptBlock); } set { } } - + } public sealed class SessionStateAliasEntry : System.Management.Automation.Runspaces.SessionStateCommandEntry { public SessionStateAliasEntry(string name, string definition) : base (default(string)) { } public SessionStateAliasEntry(string name, string definition, string description) : base (default(string)) { } public SessionStateAliasEntry(string name, string definition, string description, System.Management.Automation.ScopedItemOptions options) : base (default(string)) { } - + public string Definition { get { return default(string); } } public string Description { get { return default(string); } } public System.Management.Automation.ScopedItemOptions Options { get { return default(System.Management.Automation.ScopedItemOptions); } } - + public override System.Management.Automation.Runspaces.InitialSessionStateEntry Clone() { return default(System.Management.Automation.Runspaces.InitialSessionStateEntry); } } public sealed class SessionStateApplicationEntry : System.Management.Automation.Runspaces.SessionStateCommandEntry { public SessionStateApplicationEntry(string path) : base (default(string)) { } - + public string Path { get { return default(string); } } - + public override System.Management.Automation.Runspaces.InitialSessionStateEntry Clone() { return default(System.Management.Automation.Runspaces.InitialSessionStateEntry); } } public sealed class SessionStateAssemblyEntry : System.Management.Automation.Runspaces.InitialSessionStateEntry { public SessionStateAssemblyEntry(string name) : base (default(string)) { } public SessionStateAssemblyEntry(string name, string fileName) : base (default(string)) { } - + public string FileName { get { return default(string); } } - + public override System.Management.Automation.Runspaces.InitialSessionStateEntry Clone() { return default(System.Management.Automation.Runspaces.InitialSessionStateEntry); } } public sealed class SessionStateCmdletEntry : System.Management.Automation.Runspaces.SessionStateCommandEntry { public SessionStateCmdletEntry(string name, System.Type implementingType, string helpFileName) : base (default(string)) { } - + public string HelpFileName { get { return default(string); } } public System.Type ImplementingType { get { return default(System.Type); } } - + public override System.Management.Automation.Runspaces.InitialSessionStateEntry Clone() { return default(System.Management.Automation.Runspaces.InitialSessionStateEntry); } } public abstract class SessionStateCommandEntry : System.Management.Automation.Runspaces.ConstrainedSessionStateEntry { protected SessionStateCommandEntry(string name) : base (default(string), default(System.Management.Automation.SessionStateEntryVisibility)) { } protected internal SessionStateCommandEntry(string name, System.Management.Automation.SessionStateEntryVisibility visibility) : base (default(string), default(System.Management.Automation.SessionStateEntryVisibility)) { } - + public System.Management.Automation.CommandTypes CommandType { get { return default(System.Management.Automation.CommandTypes); } } - + } public sealed class SessionStateFormatEntry : System.Management.Automation.Runspaces.InitialSessionStateEntry { public SessionStateFormatEntry(System.Management.Automation.ExtendedTypeDefinition typeDefinition) : base (default(string)) { } public SessionStateFormatEntry(System.Management.Automation.Runspaces.FormatTable formattable) : base (default(string)) { } public SessionStateFormatEntry(string fileName) : base (default(string)) { } - + public string FileName { get { return default(string); } } public System.Management.Automation.ExtendedTypeDefinition FormatData { get { return default(System.Management.Automation.ExtendedTypeDefinition); } } public System.Management.Automation.Runspaces.FormatTable Formattable { get { return default(System.Management.Automation.Runspaces.FormatTable); } } - + public override System.Management.Automation.Runspaces.InitialSessionStateEntry Clone() { return default(System.Management.Automation.Runspaces.InitialSessionStateEntry); } } public sealed class SessionStateFunctionEntry : System.Management.Automation.Runspaces.SessionStateCommandEntry { public SessionStateFunctionEntry(string name, string definition) : base (default(string)) { } public SessionStateFunctionEntry(string name, string definition, System.Management.Automation.ScopedItemOptions options, string helpFile) : base (default(string)) { } public SessionStateFunctionEntry(string name, string definition, string helpFile) : base (default(string)) { } - + public string Definition { get { return default(string); } } public string HelpFile { get { return default(string); } } public System.Management.Automation.ScopedItemOptions Options { get { return default(System.Management.Automation.ScopedItemOptions); } } - + public override System.Management.Automation.Runspaces.InitialSessionStateEntry Clone() { return default(System.Management.Automation.Runspaces.InitialSessionStateEntry); } } public sealed class SessionStateProviderEntry : System.Management.Automation.Runspaces.ConstrainedSessionStateEntry { public SessionStateProviderEntry(string name, System.Type implementingType, string helpFileName) : base (default(string), default(System.Management.Automation.SessionStateEntryVisibility)) { } - + public string HelpFileName { get { return default(string); } } public System.Type ImplementingType { get { return default(System.Type); } } - + public override System.Management.Automation.Runspaces.InitialSessionStateEntry Clone() { return default(System.Management.Automation.Runspaces.InitialSessionStateEntry); } } public class SessionStateProxy { @@ -8478,27 +8478,27 @@ internal SessionStateProxy() { } public virtual System.Management.Automation.CmdletProviderManagementIntrinsics Provider { get { return default(System.Management.Automation.CmdletProviderManagementIntrinsics); } } public virtual System.Management.Automation.PSVariableIntrinsics PSVariable { get { return default(System.Management.Automation.PSVariableIntrinsics); } } public virtual System.Collections.Generic.List Scripts { get { return default(System.Collections.Generic.List); } } - + public virtual object GetVariable(string name) { return default(object); } public virtual void SetVariable(string name, object value) { } } public sealed class SessionStateScriptEntry : System.Management.Automation.Runspaces.SessionStateCommandEntry { public SessionStateScriptEntry(string path) : base (default(string)) { } - + public string Path { get { return default(string); } } - + public override System.Management.Automation.Runspaces.InitialSessionStateEntry Clone() { return default(System.Management.Automation.Runspaces.InitialSessionStateEntry); } } public sealed class SessionStateTypeEntry : System.Management.Automation.Runspaces.InitialSessionStateEntry { public SessionStateTypeEntry(System.Management.Automation.Runspaces.TypeData typeData, bool isRemove) : base (default(string)) { } public SessionStateTypeEntry(System.Management.Automation.Runspaces.TypeTable typeTable) : base (default(string)) { } public SessionStateTypeEntry(string fileName) : base (default(string)) { } - + public string FileName { get { return default(string); } } public bool IsRemove { get { return default(bool); } } public System.Management.Automation.Runspaces.TypeData TypeData { get { return default(System.Management.Automation.Runspaces.TypeData); } } public System.Management.Automation.Runspaces.TypeTable TypeTable { get { return default(System.Management.Automation.Runspaces.TypeTable); } } - + public override System.Management.Automation.Runspaces.InitialSessionStateEntry Clone() { return default(System.Management.Automation.Runspaces.InitialSessionStateEntry); } } public sealed class SessionStateVariableEntry : System.Management.Automation.Runspaces.ConstrainedSessionStateEntry { @@ -8506,12 +8506,12 @@ public sealed class SessionStateVariableEntry : System.Management.Automation.Run public SessionStateVariableEntry(string name, object value, string description, System.Management.Automation.ScopedItemOptions options) : base (default(string), default(System.Management.Automation.SessionStateEntryVisibility)) { } public SessionStateVariableEntry(string name, object value, string description, System.Management.Automation.ScopedItemOptions options, System.Attribute attribute) : base (default(string), default(System.Management.Automation.SessionStateEntryVisibility)) { } public SessionStateVariableEntry(string name, object value, string description, System.Management.Automation.ScopedItemOptions options, System.Collections.ObjectModel.Collection attributes) : base (default(string), default(System.Management.Automation.SessionStateEntryVisibility)) { } - + public System.Collections.ObjectModel.Collection Attributes { get { return default(System.Collections.ObjectModel.Collection); } } public string Description { get { return default(string); } } public System.Management.Automation.ScopedItemOptions Options { get { return default(System.Management.Automation.ScopedItemOptions); } } public object Value { get { return default(object); } } - + public override System.Management.Automation.Runspaces.InitialSessionStateEntry Clone() { return default(System.Management.Automation.Runspaces.InitialSessionStateEntry); } } #if PREVIEW2 @@ -8519,11 +8519,11 @@ public sealed class SessionStateWorkflowEntry : System.Management.Automation.Run public SessionStateWorkflowEntry(string name, string definition) : base (default(string)) { } public SessionStateWorkflowEntry(string name, string definition, System.Management.Automation.ScopedItemOptions options, string helpFile) : base (default(string)) { } public SessionStateWorkflowEntry(string name, string definition, string helpFile) : base (default(string)) { } - + public string Definition { get { return default(string); } } public string HelpFile { get { return default(string); } } public System.Management.Automation.ScopedItemOptions Options { get { return default(System.Management.Automation.ScopedItemOptions); } } - + public override System.Management.Automation.Runspaces.InitialSessionStateEntry Clone() { return default(System.Management.Automation.Runspaces.InitialSessionStateEntry); } } #endif @@ -8532,7 +8532,7 @@ public sealed class TypeConfigurationEntry : System.Management.Automation.Runspa public TypeConfigurationEntry(System.Management.Automation.Runspaces.TypeData typeData, bool isRemove) : base (default(string)) { } public TypeConfigurationEntry(string fileName) : base (default(string)) { } public TypeConfigurationEntry(string name, string fileName) : base (default(string)) { } - + public string FileName { get { return default(string); } } public bool IsRemove { get { return default(bool); } } public System.Management.Automation.Runspaces.TypeData TypeData { get { return default(System.Management.Automation.Runspaces.TypeData); } } @@ -8541,7 +8541,7 @@ public TypeConfigurationEntry(string name, string fileName) : base (default(stri public sealed class TypeData { public TypeData(string typeName) { } public TypeData(System.Type type) { } - + public string DefaultDisplayProperty { get { return default(string); } set { } } public System.Management.Automation.Runspaces.PropertySetData DefaultDisplayPropertySet { get { return default(System.Management.Automation.Runspaces.PropertySetData); } set { } } public System.Management.Automation.Runspaces.PropertySetData DefaultKeyPropertySet { get { return default(System.Management.Automation.Runspaces.PropertySetData); } set { } } @@ -8556,7 +8556,7 @@ public TypeData(System.Type type) { } public System.Type TypeAdapter { get { return default(System.Type); } set { } } public System.Type TypeConverter { get { return default(System.Type); } set { } } public string TypeName { get { return default(string); } } - + public System.Management.Automation.Runspaces.TypeData Copy() { return default(System.Management.Automation.Runspaces.TypeData); } } public abstract class TypeMemberData { @@ -8565,7 +8565,7 @@ internal TypeMemberData() { } } public sealed class TypeTable { public TypeTable(System.Collections.Generic.IEnumerable typeFiles) { } - + public void AddType(System.Management.Automation.Runspaces.TypeData typeData) { } public System.Management.Automation.Runspaces.TypeTable Clone(bool unshared) { return default(System.Management.Automation.Runspaces.TypeTable); } public static System.Collections.Generic.List GetDefaultTypeFiles() { return default(System.Collections.Generic.List); } @@ -8576,16 +8576,16 @@ public class TypeTableLoadException : System.Management.Automation.RuntimeExcept public TypeTableLoadException() { } public TypeTableLoadException(string message) { } public TypeTableLoadException(string message, System.Exception innerException) { } - + public System.Collections.ObjectModel.Collection Errors { get { return default(System.Collections.ObjectModel.Collection); } } - + protected void SetDefaultErrorRecord() { } } #if WSMAN public sealed class WSManConnectionInfo : System.Management.Automation.Runspaces.RunspaceConnectionInfo { public const string HttpScheme = "http"; public const string HttpsScheme = "https"; - + public WSManConnectionInfo() { } public WSManConnectionInfo(bool useSsl, string computerName, int port, string appName, string shellUri, System.Management.Automation.PSCredential credential) { } public WSManConnectionInfo(bool useSsl, string computerName, int port, string appName, string shellUri, System.Management.Automation.PSCredential credential, int openTimeout) { } @@ -8595,7 +8595,7 @@ public WSManConnectionInfo(string scheme, string computerName, int port, string public WSManConnectionInfo(System.Uri uri) { } public WSManConnectionInfo(System.Uri uri, string shellUri, System.Management.Automation.PSCredential credential) { } public WSManConnectionInfo(System.Uri uri, string shellUri, string certificateThumbprint) { } - + public string AppName { get { return default(string); } set { } } public override System.Management.Automation.Runspaces.AuthenticationMechanism AuthenticationMechanism { get { return default(System.Management.Automation.Runspaces.AuthenticationMechanism); } set { } } public override string CertificateThumbprint { get { return default(string); } set { } } @@ -8621,7 +8621,7 @@ public WSManConnectionInfo(System.Uri uri, string shellUri, string certificateTh public bool SkipRevocationCheck { get { return default(bool); } set { } } public bool UseCompression { get { return default(bool); } set { } } public bool UseUTF16 { get { return default(bool); } set { } } - + public System.Management.Automation.Runspaces.WSManConnectionInfo Copy() { return default(System.Management.Automation.Runspaces.WSManConnectionInfo); } public override void SetSessionOptions(System.Management.Automation.Remoting.PSSessionOption options) { } } diff --git a/src/5/PowerShellStandard.Library.nuspec b/src/5/PowerShellStandard.Library.nuspec index 8147813..42a2aa8 100644 --- a/src/5/PowerShellStandard.Library.nuspec +++ b/src/5/PowerShellStandard.Library.nuspec @@ -2,26 +2,27 @@ PowerShellStandard.Library - 5.1.0 + 7.0.0-preview.1 PowerShellStandard.Library Microsoft Microsoft,PowerShellTeam https://github.com/PowerShell/PowerShellStandard - https://github.com/PowerShell/PowerShell/blob/master/assets/Powershell_64.png - https://github.com/PowerShell/PowerShell/blob/master/LICENSE.txt + images\PowerShell_64.png + MIT false - Common APIs available to both Windows PowerShell 5.1 and PowerShell Core 6 to enable the same C# module to work in both environments. + Common APIs available to both Windows PowerShell 5.1 and PowerShell 7 to enable the same C# module to work in both environments. © Microsoft Corporation. All rights reserved. PowerShell, reference, net452, netstandard2, netstandard2.0 - - False - + + + - - + + + diff --git a/src/5/System.Management.Automation-lib.cs b/src/5/System.Management.Automation-lib.cs index fd641bf..cf699a2 100644 --- a/src/5/System.Management.Automation-lib.cs +++ b/src/5/System.Management.Automation-lib.cs @@ -1,3 +1,4 @@ + namespace Microsoft.PowerShell { public sealed class DeserializingTypeConverter : System.Management.Automation.PSTypeConverter { static DeserializingTypeConverter() { } @@ -2183,7 +2184,7 @@ internal WSManConfigurationOption() { } public System.Nullable MaxSessionsPerUser { get { return default(System.Nullable); } internal set { } } public System.Nullable OutputBufferingMode { get { return default(System.Nullable); } internal set { } } public System.Nullable ProcessIdleTimeoutSec { get { return default(System.Nullable); } internal set { } } - protected internal override void LoadFromDefaults ( System.Management.Automation.Runspaces.PSSessionType sessionType, bool keepAssigned ) { } + // protected internal override void LoadFromDefaults ( System.Management.Automation.Runspaces.PSSessionType sessionType, bool keepAssigned ) { } } @@ -3667,13 +3668,6 @@ protected virtual void OnUnblockJobCompleted ( System.ComponentModel.AsyncComple } - public sealed class JobDataAddedEventArgs : System.EventArgs { - internal JobDataAddedEventArgs() { } - public System.Management.Automation.PowerShellStreamType DataType { get { return default(System.Management.Automation.PowerShellStreamType); } } - public int Index { get { return default(int); } } - public System.Management.Automation.Job SourceJob { get { return default(System.Management.Automation.Job); } } - } - [System.SerializableAttribute] public class JobDefinition : System.Runtime.Serialization.ISerializable { public JobDefinition(System.Type jobSourceAdapterType, string command, string name) { } @@ -4164,7 +4158,7 @@ public event System.EventHandler ( System.Management.Automation.PSDataCollection input, System.Management.Automation.PSInvocationSettings settings, System.AsyncCallback callback, object state ) { return default(System.IAsyncResult); } public System.IAsyncResult BeginInvoke ( System.Management.Automation.PSDataCollection input, System.Management.Automation.PSDataCollection output ) { return default(System.IAsyncResult); } @@ -4450,31 +4444,6 @@ public override void GetObjectData ( System.Runtime.Serialization.SerializationI } - public sealed class PSChildJobProxy : System.Management.Automation.Job2, System.IDisposable { - internal PSChildJobProxy() { } - public event System.EventHandler JobDataAdded { add { } remove { } } - - public override bool HasMoreData { get { return default(bool); } } - public override string Location { get { return default(string); } } - public override string StatusMessage { get { return default(string); } } - protected override void Dispose ( bool disposing ) { } - public override void ResumeJob ( ) { } - public override void ResumeJobAsync ( ) { } - public override void StartJob ( ) { } - public override void StartJobAsync ( ) { } - public override void StopJob ( bool force, string reason ) { } - public override void StopJob ( ) { } - public override void StopJobAsync ( ) { } - public override void StopJobAsync ( bool force, string reason ) { } - public override void SuspendJob ( ) { } - public override void SuspendJob ( bool force, string reason ) { } - public override void SuspendJobAsync ( ) { } - public override void SuspendJobAsync ( bool force, string reason ) { } - public override void UnblockJob ( ) { } - public override void UnblockJobAsync ( ) { } - - } - public sealed class PSClassInfo { internal PSClassInfo(string name) { } public string HelpFile { get { return default(string); } internal set { } } @@ -4896,53 +4865,6 @@ internal PSInvocationStateInfo() { } public System.Management.Automation.PSInvocationState State { get { return default(System.Management.Automation.PSInvocationState); } } } - public sealed class PSJobProxy : System.Management.Automation.Job2, System.IDisposable { - internal PSJobProxy() { } - public event System.EventHandler RemoveJobCompleted { add { } remove { } } - - public override bool HasMoreData { get { return default(bool); } } - public override string Location { get { return default(string); } } - public System.Guid RemoteJobInstanceId { get { return default(System.Guid); } } - public bool RemoveRemoteJobOnCompletion { get { return default(bool); } set { } } - public System.Management.Automation.Runspaces.Runspace Runspace { get { return default(System.Management.Automation.Runspaces.Runspace); } set { } } - public System.Management.Automation.Runspaces.RunspacePool RunspacePool { get { return default(System.Management.Automation.Runspaces.RunspacePool); } set { } } - public override string StatusMessage { get { return default(string); } } - public static System.Collections.Generic.ICollection Create ( System.Management.Automation.Runspaces.Runspace runspace, System.Collections.Hashtable filter, bool receiveImmediately ) { return default(System.Collections.Generic.ICollection); } - public static System.Collections.Generic.ICollection Create ( System.Management.Automation.Runspaces.Runspace runspace, System.Collections.Hashtable filter ) { return default(System.Collections.Generic.ICollection); } - public static System.Collections.Generic.ICollection Create ( System.Management.Automation.Runspaces.Runspace runspace ) { return default(System.Collections.Generic.ICollection); } - public static System.Collections.Generic.ICollection Create ( System.Management.Automation.Runspaces.RunspacePool runspacePool, System.Collections.Hashtable filter, System.EventHandler dataAdded, System.EventHandler stateChanged ) { return default(System.Collections.Generic.ICollection); } - public static System.Collections.Generic.ICollection Create ( System.Management.Automation.Runspaces.RunspacePool runspacePool, System.Collections.Hashtable filter, bool receiveImmediately ) { return default(System.Collections.Generic.ICollection); } - public static System.Collections.Generic.ICollection Create ( System.Management.Automation.Runspaces.RunspacePool runspacePool, System.Collections.Hashtable filter ) { return default(System.Collections.Generic.ICollection); } - public static System.Collections.Generic.ICollection Create ( System.Management.Automation.Runspaces.Runspace runspace, System.Collections.Hashtable filter, System.EventHandler dataAdded, System.EventHandler stateChanged ) { return default(System.Collections.Generic.ICollection); } - public static System.Collections.Generic.ICollection Create ( System.Management.Automation.Runspaces.RunspacePool runspacePool ) { return default(System.Collections.Generic.ICollection); } - protected override void Dispose ( bool disposing ) { } - public void ReceiveJob ( ) { } - public void ReceiveJob ( System.EventHandler dataAdded, System.EventHandler stateChanged ) { } - public void RemoveJob ( bool removeRemoteJob ) { } - public void RemoveJob ( bool removeRemoteJob, bool force ) { } - public void RemoveJobAsync ( bool removeRemoteJob, bool force ) { } - public void RemoveJobAsync ( bool removeRemoteJob ) { } - public override void ResumeJob ( ) { } - public override void ResumeJobAsync ( ) { } - public override void StartJob ( ) { } - public void StartJob ( System.Management.Automation.PSDataCollection input ) { } - public void StartJob ( System.EventHandler dataAdded, System.EventHandler stateChanged, System.Management.Automation.PSDataCollection input ) { } - public void StartJobAsync ( System.EventHandler dataAdded, System.EventHandler stateChanged, System.Management.Automation.PSDataCollection input ) { } - public override void StartJobAsync ( ) { } - public void StartJobAsync ( System.Management.Automation.PSDataCollection input ) { } - public override void StopJob ( bool force, string reason ) { } - public override void StopJob ( ) { } - public override void StopJobAsync ( ) { } - public override void StopJobAsync ( bool force, string reason ) { } - public override void SuspendJob ( ) { } - public override void SuspendJob ( bool force, string reason ) { } - public override void SuspendJobAsync ( ) { } - public override void SuspendJobAsync ( bool force, string reason ) { } - public override void UnblockJob ( ) { } - public override void UnblockJobAsync ( ) { } - - } - public sealed class PSJobStartEventArgs : System.EventArgs { public PSJobStartEventArgs(System.Management.Automation.Job job, System.Management.Automation.Debugger debugger, bool isAsync) { } @@ -5492,7 +5414,6 @@ public abstract class PSTransportOption : System.ICloneable { protected PSTransportOption() { } public object Clone ( ) { return default(object); } - protected internal virtual void LoadFromDefaults ( System.Management.Automation.Runspaces.PSSessionType sessionType, bool keepAssigned ) { } } @@ -7399,12 +7320,6 @@ public enum PSSessionConfigurationAccessMode { Remote = 2, } - public enum PSSessionType { - DefaultRemoteShell = 0, - Workflow = 1, - } - - public enum PSThreadOptions { Default = 0, ReuseThread = 2, @@ -7577,7 +7492,7 @@ public override void GetObjectData ( System.Runtime.Serialization.SerializationI } - internal class RunspaceCreatedEventArgs : System.EventArgs { + internal sealed class RunspaceCreatedEventArgs : System.EventArgs { internal RunspaceCreatedEventArgs() { } } @@ -7892,7 +7807,6 @@ public WSManConnectionInfo() { } public WSManConnectionInfo(System.Uri uri, string shellUri, System.Management.Automation.PSCredential credential) { } public WSManConnectionInfo(System.Uri uri, string shellUri, string certificateThumbprint) { } public WSManConnectionInfo(System.Uri uri) { } - public WSManConnectionInfo(System.Management.Automation.Runspaces.PSSessionType configurationType) { } public const string HttpScheme = "http"; public const string HttpsScheme = "https"; @@ -9338,9 +9252,9 @@ public enum TokenKind { } public static class TokenTraits { - public static System.Management.Automation.Language.TokenFlags GetTraits ( System.Management.Automation.Language.TokenKind kind ) { return default(System.Management.Automation.Language.TokenFlags); } - public static bool HasTrait ( System.Management.Automation.Language.TokenKind kind, System.Management.Automation.Language.TokenFlags flag ) { return default(bool); } - public static string Text ( System.Management.Automation.Language.TokenKind kind ) { return default(string); } + public static System.Management.Automation.Language.TokenFlags GetTraits ( this System.Management.Automation.Language.TokenKind kind ) { return default(System.Management.Automation.Language.TokenFlags); } + public static bool HasTrait ( this System.Management.Automation.Language.TokenKind kind, System.Management.Automation.Language.TokenFlags flag ) { return default(bool); } + public static string Text ( this System.Management.Automation.Language.TokenKind kind ) { return default(string); } } diff --git a/src/5/System.Management.Automation-lib.csproj b/src/5/System.Management.Automation-lib.csproj index 80c9d10..99337c6 100644 --- a/src/5/System.Management.Automation-lib.csproj +++ b/src/5/System.Management.Automation-lib.csproj @@ -5,7 +5,7 @@ ..\signing\visualstudiopublic.snk System.Management.Automation 3.0.0 - 5.1.0 + 7.0.0 True RUNTIME_SERIALIZATION ./PowershellStandard.Library.nuspec diff --git a/src/5/images/PowerShell_64.png b/src/5/images/PowerShell_64.png new file mode 100644 index 0000000..2a656ff Binary files /dev/null and b/src/5/images/PowerShell_64.png differ diff --git a/src/dotnetTemplate/Microsoft.PowerShell.Standard.Module.Template/Microsoft.PowerShell.Standard.Module.Template.nuspec b/src/dotnetTemplate/Microsoft.PowerShell.Standard.Module.Template/Microsoft.PowerShell.Standard.Module.Template.nuspec index d8515a0..36d87a7 100755 --- a/src/dotnetTemplate/Microsoft.PowerShell.Standard.Module.Template/Microsoft.PowerShell.Standard.Module.Template.nuspec +++ b/src/dotnetTemplate/Microsoft.PowerShell.Standard.Module.Template/Microsoft.PowerShell.Standard.Module.Template.nuspec @@ -2,20 +2,24 @@ Microsoft.PowerShell.Standard.Module.Template - 0.1.5 + 7.0.0-preview.1 PowerShell Standard module Microsoft Microsoft,PowerShellTeam https://github.com/PowerShell/PowerShellStandard https://secure.gravatar.com/avatar/cfba7016de8e12d5b3017130f75ef8ed - https://github.com/PowerShell/PowerShellStandard/blob/master/LICENSE.txt + images/PowerShell_64.png + MIT false - Creates a PowerShell Standard based C# module. + Creates a PowerShell Standard 7 based C# module. (c) Microsoft Corporation. All rights reserved. + + + diff --git a/src/dotnetTemplate/Microsoft.PowerShell.Standard.Module.Template/Microsoft.PowerShell.Standard.Module.Template/Microsoft.PowerShell.Standard.Module.Template.csproj b/src/dotnetTemplate/Microsoft.PowerShell.Standard.Module.Template/Microsoft.PowerShell.Standard.Module.Template/Microsoft.PowerShell.Standard.Module.Template.csproj index 19fa004..4e44fb9 100755 --- a/src/dotnetTemplate/Microsoft.PowerShell.Standard.Module.Template/Microsoft.PowerShell.Standard.Module.Template/Microsoft.PowerShell.Standard.Module.Template.csproj +++ b/src/dotnetTemplate/Microsoft.PowerShell.Standard.Module.Template/Microsoft.PowerShell.Standard.Module.Template/Microsoft.PowerShell.Standard.Module.Template.csproj @@ -6,7 +6,7 @@ - + All diff --git a/src/dotnetTemplate/Microsoft.PowerShell.Standard.Module.Template/images/PowerShell_64.png b/src/dotnetTemplate/Microsoft.PowerShell.Standard.Module.Template/images/PowerShell_64.png new file mode 100644 index 0000000..2a656ff Binary files /dev/null and b/src/dotnetTemplate/Microsoft.PowerShell.Standard.Module.Template/images/PowerShell_64.png differ diff --git a/src/dotnetTemplate/README.md b/src/dotnetTemplate/README.md index b722d73..2ab5004 100755 --- a/src/dotnetTemplate/README.md +++ b/src/dotnetTemplate/README.md @@ -95,9 +95,9 @@ PowerShell Standard Module (C#) Author: Microsoft Corporation Options: -v|--powershell-standard-version - 5.1.0 - PowerShell Standard 5.1.0 + 7.0.0-preview.1 - PowerShell Standard 7.0.0-preview.1 3.0.0-preview-02 - PowerShell Standard 3.0 - Default: 5.1.0 + Default: 7.0.0-preview.1 --no-restore If specified, skips the automatic restore of the project on create. bool - Optional diff --git a/test/5/core/PSS5.Tests.ps1 b/test/5/core/PSS5.Tests.ps1 index 5555670..7798fbc 100644 --- a/test/5/core/PSS5.Tests.ps1 +++ b/test/5/core/PSS5.Tests.ps1 @@ -227,7 +227,12 @@ Describe 'PowerShell Standard 5' { @{ Name = 'System.Management.Automation.Tracing.Tracer' }, @{ Name = 'System.Management.Automation.Tracing.PowerShellTraceSource' }, @{ Name = 'System.Management.Automation.Tracing.PowerShellTraceSourceFactory' }, - @{ Name = 'System.Management.Automation.Internal.TransactionParameters' } + @{ Name = 'System.Management.Automation.Internal.TransactionParameters' }, + # Removed in 7 + @{ Name = 'System.Management.Automation.JobDataAddedEventArgs' }, + @{ Name = 'System.Management.Automation.PSChildJobProxy' }, + @{ Name = 'System.Management.Automation.PSJobProxy' }, + @{ Name = 'System.Management.Automation.Runspaces.PSSessionType' } } It "There should be no types in standard which are not in the product" -skip:(! $assemblyExists) { diff --git a/tools/releaseBuild/signing.xml b/tools/releaseBuild/signing.xml index e546cd4..ff1f2f7 100644 --- a/tools/releaseBuild/signing.xml +++ b/tools/releaseBuild/signing.xml @@ -2,11 +2,13 @@ - + + +