OnGetTypeTags() protected method

protected OnGetTypeTags ( HashSet types ) : void
types HashSet
return void
コード例 #1
0
 internal protected virtual void OnGetTypeTags(HashSet <string> types)
 {
     next.OnGetTypeTags(types);
     if (TypeAlias != null)
     {
         types.Add(TypeAlias);
     }
 }