Proprietà Reference.PublicKeyToken

Ottiene il token della chiave pubblica per l'assembly a cui viene fatto riferimento.

Spazio dei nomi:  VSLangProj
Assembly:  VSLangProj (in VSLangProj.dll)

Sintassi

'Dichiarazione
ReadOnly Property PublicKeyToken As String
    Get
string PublicKeyToken { get; }
property String^ PublicKeyToken {
    String^ get ();
}
abstract PublicKeyToken : string
function get PublicKeyToken () : String

Valore proprietà

Tipo: System.String
Stringa che rappresenta il token di chiave pubblica per l'assembly a cui viene fatto riferimento.

Esempi

Nell'esempio riportato di seguito viene elencato il valore della proprietà PublicKeyToken del riferimento all'assembly:

' Add a reference to Microsoft.VisualStudio.VCProjectEngine and have a 
' Visual C++ project loaded before running this example.
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
    Sub Test()
        Dim prj As VCProject
        Dim vcar As VCAssemblyReference
        prj = DTE.Solution.Projects.Item(1).Object
        vcar = prj.VCReferences.item(1) 
        MsgBox("Public key token: " & vcar.PublicKeyToken)
    End Sub
End Module

Per informazioni sulla compilazione e l'esecuzione dell'esempio, vedere Procedura: compilare codice di esempio per l'Extensibility del modello di progetto.

Sicurezza di .NET Framework

Vedere anche

Riferimenti

Reference Interfaccia

Spazio dei nomi VSLangProj