Exemplo n.º 1
0
		public CommandTargetFilter(ITextView textView, IQuickInfoTriggerService quickInfoTriggerService) {
			if (textView == null)
				throw new ArgumentNullException(nameof(textView));
			if (quickInfoTriggerService == null)
				throw new ArgumentNullException(nameof(quickInfoTriggerService));
			this.textView = textView;
			this.quickInfoTriggerService = quickInfoTriggerService;
		}
Exemplo n.º 2
0
 public CommandTargetFilter(ITextView textView, IQuickInfoTriggerService quickInfoTriggerService)
 {
     if (textView == null)
     {
         throw new ArgumentNullException(nameof(textView));
     }
     if (quickInfoTriggerService == null)
     {
         throw new ArgumentNullException(nameof(quickInfoTriggerService));
     }
     this.textView = textView;
     this.quickInfoTriggerService = quickInfoTriggerService;
 }