public DomainDispatcher(PSCmdlet cmdlet) { Contract.Requires(cmdlet != null); _cmdlet = cmdlet; _dte = (DTE)cmdlet.GetVariableValue("DTE"); }
public DomainDispatcher(PSCmdlet cmdlet) { // Not using Check here because this assembly is very small and without resources if (cmdlet == null) { throw new ArgumentNullException("cmdlet"); } _cmdlet = cmdlet; _dte = (DTE)cmdlet.GetVariableValue("DTE"); }