コード例 #1
0
 internal ShowCommandProxy(ShowCommandCommand cmdlet)
 {
     this.cmdlet = cmdlet;
     this.graphicalHostReflectionWrapper = GraphicalHostReflectionWrapper.GetGraphicalHostReflectionWrapper(cmdlet, "Microsoft.PowerShell.Commands.ShowCommandInternal.ShowCommandHelper");
 }
コード例 #2
0
 internal ShowCommandProxy(ShowCommandCommand cmdlet)
 {
     _cmdlet = cmdlet;
     _graphicalHostReflectionWrapper = GraphicalHostReflectionWrapper.GetGraphicalHostReflectionWrapper(cmdlet, ShowCommandProxy.ShowCommandHelperName);
 }
コード例 #3
0
ファイル: ShowCommandCommand.cs プロジェクト: nickchal/pash
 internal static void SetInputRecord(ref ShowCommandCommand.ConsoleInputWithNativeMethods.INPUT_RECORD inputRecord, char character)
 {
     inputRecord.EventType = 1;
     inputRecord.KeyEvent.bKeyDown = true;
     inputRecord.KeyEvent.UnicodeChar = character;
 }
コード例 #4
0
ファイル: ShowCommandProxy.cs プロジェクト: 40a/PowerShell
 internal ShowCommandProxy(ShowCommandCommand cmdlet)
 {
     _cmdlet = cmdlet;
     _graphicalHostReflectionWrapper = GraphicalHostReflectionWrapper.GetGraphicalHostReflectionWrapper(cmdlet, ShowCommandProxy.ShowCommandHelperName);
 }
コード例 #5
0
ファイル: ShowCommandProxy.cs プロジェクト: nickchal/pash
 internal ShowCommandProxy(ShowCommandCommand cmdlet)
 {
     this.cmdlet = cmdlet;
     this.graphicalHostReflectionWrapper = GraphicalHostReflectionWrapper.GetGraphicalHostReflectionWrapper(cmdlet, "Microsoft.PowerShell.Commands.ShowCommandInternal.ShowCommandHelper");
 }