/// <summary>
 /// Omits the specified type.
 /// </summary>
 /// <param name="type">The type.</param>
 /// <returns></returns>
 internal bool Omit(ApiTrackingType type)
 {
     return(OmitType.HasFlag(type));
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiTrackingOptionAttribute"/> class.
 /// </summary>
 /// <param name="omitType">Type of the omit.</param>
 internal ApiTrackingOptionAttribute(ApiTrackingType omitType)
 {
     OmitType = omitType;
 }