Esempio n. 1
0
        public MediaTypeSearchCriteria(MediaType types, MatchRule typeMatchRule)
        {
            if (types == MediaType.None)
                throw new ArgumentException("No type specified", "types");

            this.types			= types;
            this.typeMatchRule 	= typeMatchRule;
        }
Esempio n. 2
0
 private bool ContainsType(MediaType type)
 {
     return (this & type) == type;
 }
Esempio n. 3
0
 public MediaTypeSearchCriteria(MediaType types)
     : this(types, MatchRule.AnyMustMatch)
 {
 }