Liberi
An exergame built for kids with CP!
LogEventAttribute.cs
1 using System;
2 
6 [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = false)]
7 public class LogEventAttribute : Attribute
8 {
12  public string[] ParamNames
13  {
14  get { return _paramNames; }
15  }
16 
17  string[] _paramNames;
18 
23  public LogEventAttribute (params string[] paramNames)
24  {
25  _paramNames = paramNames;
26  }
27 }
LogEventAttribute(params string[] paramNames)
Marks this enumeration value as a possible log event type.
Attribute to use on enumeration values, marking them as possible log event type.
string[] ParamNames
Gets the parameter names of this log event type.