ManagementClass.Derivation Propriedade
Definição
Obtém uma matriz que contém todas as classes WMI na hierarquia de herança dessa classe para a parte superior da hierarquia.Gets an array containing all WMI classes in the inheritance hierarchy from this class to the top of the hierarchy.
public:
property System::Collections::Specialized::StringCollection ^ Derivation { System::Collections::Specialized::StringCollection ^ get(); };
public System.Collections.Specialized.StringCollection Derivation { get; }
member this.Derivation : System.Collections.Specialized.StringCollection
Public ReadOnly Property Derivation As StringCollection
Valor da propriedade
Uma coleção de cadeias de caracteres que contém os nomes de todas as classes WMI na hierarquia de herança dessa classe.A string collection containing the names of all WMI classes in the inheritance hierarchy of this class.
Exemplos
O exemplo a seguir mostra como inicializar uma ManagementClass variável com um ManagementClass Construtor e, em seguida, obter todas as classes na hierarquia de herança da classe WMI passada para o construtor, para a parte superior da hierarquia.The following example shows how to initialize a ManagementClass variable with a ManagementClass constructor and then get all the classes in the inheritance hierarchy from the WMI class passed into the constructor, to the top of the hierarchy.
using System;
using System.Management;
public class Example
{
public static void Main()
{
ManagementClass c =
new ManagementClass("Win32_LogicalDisk");
foreach (string s in c.Derivation)
Console.WriteLine("Further derived from : {0}", s);
return;
}
}
Imports System.Management
Public Class Sample
Public Shared Function Main(ByVal args() _
As String) As Integer
Dim c As New ManagementClass("Win32_LogicalDisk")
Dim s As String
For Each s In c.Derivation
Console.WriteLine("Further derived from : " & s)
Next
Return 0
End Function
End Class
Comentários
Esta propriedade é somente para leitura.This property is read-only.
Segurança do .NET Framework.NET Framework Security
Confiança total para o chamador imediato.Full trust for the immediate caller. Este membro não pode ser usado pelo código parcialmente confiável.This member cannot be used by partially trusted code. Para obter mais informações, consulte usando bibliotecas de código parcialmente confiável.For more information, see Using Libraries from Partially Trusted Code.