WingMan – Blame information for rev 32

Subversion Repositories:
Rev:
Rev Author Line No. Line
23 office 1 using System;
2  
3 namespace WingMan.AutoCompletion
4 {
5 public class AutoCompletionFailedEventArgs : EventArgs
6 {
7 public AutoCompletionFailedEventArgs(AutoCompletionFailedType type, string name, Exception ex)
8 {
9 Type = type;
10 Name = name;
11 Exception = ex;
12 }
13  
14 public AutoCompletionFailedType Type { get; set; }
15 public Exception Exception { get; set; }
16 public string Name { get; set; }
17 }
32 office 18 }