コード例 #1
0
 /// <summary>
 /// Constructor for PSClassHelpProvider
 /// </summary>
 internal PSClassHelpProvider(HelpSystem helpSystem)
     : base(helpSystem)
 {
     _context = helpSystem.ExecutionContext;
 }
コード例 #2
0
 /// <summary>
 /// Constructor for HelpProvider
 /// </summary>
 internal HelpFileHelpProvider(HelpSystem helpSystem) : base(helpSystem)
 {
 }
コード例 #3
0
ファイル: DefaultHelpProvider.cs プロジェクト: 40a/PowerShell
 /// <summary>
 /// Constructor for HelpProvider
 /// </summary>
 internal DefaultHelpProvider(HelpSystem helpSystem)
     : base(helpSystem)
 {
 }
コード例 #4
0
 /// <summary>
 /// Constructor for GlossaryHelpProvider
 /// </summary>
 internal GlossaryHelpProvider(HelpSystem helpSystem) : base(helpSystem)
 {
     this.HasCustomMatch = true;
 }
コード例 #5
0
 /// <summary>
 /// Initializes a new instance of AliasHelpProvider class.
 /// </summary>
 internal AliasHelpProvider(HelpSystem helpSystem) : base(helpSystem)
 {
     _sessionState     = helpSystem.ExecutionContext.SessionState;
     _commandDiscovery = helpSystem.ExecutionContext.CommandDiscovery;
     _context          = helpSystem.ExecutionContext;
 }
コード例 #6
0
ファイル: HelpProvider.cs プロジェクト: yodalk/PowerShell
 /// <summary>
 /// Constructor for HelpProvider
 /// </summary>
 internal HelpProvider(HelpSystem helpSystem)
 {
     _helpSystem = helpSystem;
 }
コード例 #7
0
ファイル: FaqHelpProvider.cs プロジェクト: 40a/PowerShell
 /// <summary>
 /// Constructor for FaqHelpProvider
 /// </summary>
 internal FaqHelpProvider(HelpSystem helpSystem) : base(helpSystem)
 {
 }
コード例 #8
0
 internal ProviderHelpProvider(HelpSystem helpSystem) : base(helpSystem)
 {
     this._helpFiles    = new Hashtable();
     this._sessionState = helpSystem.ExecutionContext.SessionState;
 }
コード例 #9
0
 /// <summary>
 /// Constructor for GeneralHelpProvider
 /// </summary>
 internal GeneralHelpProvider(HelpSystem helpSystem) : base(helpSystem)
 {
 }
コード例 #10
0
 internal DefaultHelpProvider(HelpSystem helpSystem)
     : base(helpSystem)
 {
     using (DefaultHelpProvider.tracer.TraceConstructor((object)this))
         ;
 }
コード例 #11
0
 /// <summary>
 /// Constructor for HelpProvider
 /// </summary>
 internal ProviderHelpProvider(HelpSystem helpSystem) : base(helpSystem)
 {
     _sessionState = helpSystem.ExecutionContext.SessionState;
 }
コード例 #12
0
 internal HelpProviderWithCache(HelpSystem helpSystem) : base(helpSystem)
 {
     this._helpCache = new Hashtable(StringComparer.OrdinalIgnoreCase);
 }
コード例 #13
0
 internal GeneralHelpProvider(HelpSystem helpSystem)
     : base(helpSystem)
 {
     using (GeneralHelpProvider.tracer.TraceConstructor((object)this))
         this._commandDiscovery = helpSystem.ExecutionContext.CommandDiscovery;
 }
コード例 #14
0
ファイル: AliasHelpProvider.cs プロジェクト: 40a/PowerShell
 /// <summary>
 /// Initializes a new instance of AliasHelpProvider class.
 /// </summary>
 internal AliasHelpProvider(HelpSystem helpSystem) : base(helpSystem)
 {
     _sessionState = helpSystem.ExecutionContext.SessionState;
     _commandDiscovery = helpSystem.ExecutionContext.CommandDiscovery;
     _context = helpSystem.ExecutionContext;
 }
コード例 #15
0
 internal CommandHelpProvider(HelpSystem helpSystem)
     : base(helpSystem)
     => this._context = helpSystem.ExecutionContext;
コード例 #16
0
ファイル: HelpProvider.cs プロジェクト: 40a/PowerShell
 /// <summary>
 /// Constructor for HelpProvider
 /// </summary>
 internal HelpProvider(HelpSystem helpSystem)
 {
     _helpSystem = helpSystem;
 }
コード例 #17
0
ファイル: HelpErrorTracer.cs プロジェクト: 40a/PowerShell
        internal HelpErrorTracer(HelpSystem helpSystem)
        {
            if (helpSystem == null)
            {
                throw PSTraceSource.NewArgumentNullException("HelpSystem");
            }

            HelpSystem = helpSystem;
        }
コード例 #18
0
 /// <summary>
 /// Constructor for DscResourceHelpProvider
 /// </summary>
 internal DscResourceHelpProvider(HelpSystem helpSystem)
     : base(helpSystem)
 {
     _context = helpSystem.ExecutionContext;
 }
コード例 #19
0
 internal ScriptCommandHelpProvider(HelpSystem helpSystem) : base(helpSystem)
 {
 }
コード例 #20
0
 /// <summary>
 /// Constructor for HelpProviderWithFullCache
 /// </summary>
 internal HelpProviderWithFullCache(HelpSystem helpSystem) : base(helpSystem)
 {
 }
コード例 #21
0
 /// <summary>
 /// Constructor for HelpProvider
 /// </summary>
 internal HelpFileHelpProvider(HelpSystem helpSystem) : base(helpSystem)
 {
 }
コード例 #22
0
 /// <summary>
 /// Constructor for PSClassHelpProvider
 /// </summary>
 internal PSClassHelpProvider(HelpSystem helpSystem)
     : base(helpSystem)
 {
     _context = helpSystem.ExecutionContext;
 }
コード例 #23
0
ファイル: GeneralHelpProvider.cs プロジェクト: 40a/PowerShell
 /// <summary>
 /// Constructor for GeneralHelpProvider
 /// </summary>
 internal GeneralHelpProvider(HelpSystem helpSystem) : base(helpSystem)
 {
 }
コード例 #24
0
 /// <summary>
 /// Constructor for HelpProvider.
 /// </summary>
 internal ProviderHelpProvider(HelpSystem helpSystem) : base(helpSystem)
 {
     _sessionState = helpSystem.ExecutionContext.SessionState;
 }
コード例 #25
0
ファイル: CommandHelpProvider.cs プロジェクト: nickchal/pash
 internal CommandHelpProvider(HelpSystem helpSystem) : base(helpSystem)
 {
     this._helpFiles = new Hashtable();
     this._context = helpSystem.ExecutionContext;
 }
コード例 #26
0
 /// <summary>
 /// Constructor for CommandHelpProvider
 /// </summary>
 internal CommandHelpProvider(HelpSystem helpSystem) : base(helpSystem)
 {
     _context = helpSystem.ExecutionContext;
 }
コード例 #27
0
 /// <summary>
 /// Constructor for HelpProvider.
 /// </summary>
 internal DefaultHelpProvider(HelpSystem helpSystem)
     : base(helpSystem)
 {
 }
コード例 #28
0
ファイル: ProviderHelpProvider.cs プロジェクト: nickchal/pash
 internal ProviderHelpProvider(HelpSystem helpSystem) : base(helpSystem)
 {
     this._helpFiles = new Hashtable();
     this._sessionState = helpSystem.ExecutionContext.SessionState;
 }
コード例 #29
0
ファイル: FaqHelpProvider.cs プロジェクト: modulexcite/pash-1
 internal FaqHelpProvider(HelpSystem helpSystem) : base(helpSystem)
 {
     this._helpFiles = new Hashtable();
 }
コード例 #30
0
ファイル: GlossaryHelpProvider.cs プロジェクト: nickchal/pash
 internal GlossaryHelpProvider(HelpSystem helpSystem) : base(helpSystem)
 {
     this._helpFiles = new Hashtable();
     base.HasCustomMatch = true;
 }
コード例 #31
0
 internal HelpProviderWithCache(HelpSystem helpSystem) : base(helpSystem)
 {
     this._helpCache = new Hashtable(StringComparer.OrdinalIgnoreCase);
 }
コード例 #32
0
 internal HelpProviderWithFullCache(HelpSystem helpSystem) : base(helpSystem)
 {
 }
コード例 #33
0
 /// <summary>
 /// Constructor for DscResourceHelpProvider
 /// </summary>
 internal DscResourceHelpProvider(HelpSystem helpSystem)
     : base(helpSystem)
 {
     _context = helpSystem.ExecutionContext;
 }
コード例 #34
0
ファイル: HelpFileHelpProvider.cs プロジェクト: nickchal/pash
 internal HelpFileHelpProvider(HelpSystem helpSystem) : base(helpSystem)
 {
     this._helpFiles = new Hashtable();
 }
コード例 #35
0
 internal HelpProvider(HelpSystem helpSystem)
 {
     using (HelpProvider.tracer.TraceConstructor((object)this))
         this._helpSystem = helpSystem;
 }