Exemplo n.º 1
0
        public static string GetClassName(Type t)
        {
            ManagementClassMapAttribute a = Attribute.GetCustomAttribute(t, typeof(ManagementClassMapAttribute)) as ManagementClassMapAttribute;

            return(a?.ClassName);
        }
Exemplo n.º 2
0
        public static ManagementPath GetManagementPath(Type t)
        {
            ManagementClassMapAttribute a = Attribute.GetCustomAttribute(t, typeof(ManagementClassMapAttribute)) as ManagementClassMapAttribute;

            return(a?.Path);
        }
Exemplo n.º 3
0
        public static string GetNamespacePath(Type t)
        {
            ManagementClassMapAttribute a = Attribute.GetCustomAttribute(t, typeof(ManagementClassMapAttribute)) as ManagementClassMapAttribute;

            return(a?.NamespacePath);
        }