Example #1
0
 /// <summary>Retrieves attribute declaration values from entry.</summary>
 public void GetValue(AttDeclEntry entry,
                      out string attType,
                      out string attMode,
                      out string attValue)
 {
     attType  = entry.Decl.Type;
     attMode  = entry.Decl.Mode;
     attValue = entry.Decl.Value;
 }
Example #2
0
 /// <summary>Retrieves attribute type from entry.</summary>
 public string GetAttType(AttDeclEntry entry)
 {
     return(entry.Decl.Type);
 }