Welcome to mirror list, hosted at ThFree Co, Russian Federation.

__filters.cs « reflection « system « mscorlib « referencesource « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 951881c29d27f6463921b2bc63ad6f30f46e4323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// ==++==
// 
//   Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// ==--==
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
//
// <OWNER>[....]</OWNER>
// 
// This class defines the delegate methods for the COM+ implemented filters.
//    This is the reflection version of these.  There is also a _Filters class in
//    runtime which is related to this.
//
//  
//  
//
namespace System.Reflection {
    using System;
    using System.Globalization;
    //<



    [Serializable]
    internal class __Filters {
        
        // FilterTypeName 
        // This method will filter the class based upon the name.  It supports
        //    a trailing wild card.
        public virtual bool FilterTypeName(Type cls,Object filterCriteria)
        {
            // Check that the criteria object is a String object
            if (filterCriteria == null || !(filterCriteria is String))
                throw new InvalidFilterCriteriaException(System.Environment.GetResourceString("RFLCT.FltCritString"));
    
            String str = (String) filterCriteria;
            //str = str.Trim();
    
            // Check to see if this is a prefix or exact match requirement
            if (str.Length > 0 && str[str.Length - 1] == '*') {
                str = str.Substring(0, str.Length - 1);
                return cls.Name.StartsWith(str, StringComparison.Ordinal);
            }
    
            return cls.Name.Equals(str);
        }
        
        // FilterFieldNameIgnoreCase
        // This method filter the Type based upon name, it ignores case.
        public virtual bool FilterTypeNameIgnoreCase(Type cls, Object filterCriteria)
        {
            // Check that the criteria object is a String object
            if(filterCriteria == null || !(filterCriteria is String))
                throw new InvalidFilterCriteriaException(System.Environment.GetResourceString("RFLCT.FltCritString"));
    
            String str = (String) filterCriteria;
            //str = str.Trim();
    
            // Check to see if this is a prefix or exact match requirement
            if (str.Length > 0 && str[str.Length - 1] == '*') {
                str = str.Substring(0, str.Length - 1);
                String name = cls.Name;
                if (name.Length >= str.Length)
                    return (String.Compare(name,0,str,0,str.Length, StringComparison.OrdinalIgnoreCase)==0);
                else
                    return false;
            }
            return (String.Compare(str,cls.Name, StringComparison.OrdinalIgnoreCase) == 0);
        }
    }
}