Ejemplo n.º 1
0
 public XmlCompletionItem(string text, XmlCompletionItemType dataType)
     : this(text, String.Empty, dataType)
 {
 }
Ejemplo n.º 2
0
 public XmlCompletionItem(string text, string documentation, XmlCompletionItemType dataType)
     : base(text)
 {
     this.documentation = documentation;
     this.dataType      = dataType;
 }
Ejemplo n.º 3
0
 public XmlCompletionItem(string text, string description, XmlCompletionItemType dataType)
     : base(text)
 {
     this.description = description;
     this.dataType    = dataType;
 }