AddInToken.Publisher Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene l'editore del componente aggiuntivo.
public:
property System::String ^ Publisher { System::String ^ get(); };
public string Publisher { get; }
member this.Publisher : string
Public ReadOnly Property Publisher As String
Valore della proprietà
Editore del componente aggiuntivo oppure null
se nell'attributo AddInAttribute non viene specificato alcun editore.
Esempio
Nell'esempio seguente viene visualizzato il valore delle Nameproprietà , AddInFullName, DescriptionAssemblyName, Publisher, e Version nella console. Questo esempio di codice fa parte di un esempio più ampio fornito per la AddInToken classe .
// Show the token properties for each token
// in the AddInToken collection (tokens),
// preceded by the add-in number in [] brackets.
int tokNumber = 1;
foreach (AddInToken tok in tokens)
{
Console.WriteLine(String.Format("\t[{0}]: {1} - {2}\n\t{3}\n\t\t {4}\n\t\t {5} - {6}",
tokNumber.ToString(),
tok.Name,
tok.AddInFullName,
tok.AssemblyName,
tok.Description,
tok.Version,
tok.Publisher));
tokNumber++;
}
' Show the token properties for each token
' in the AddInToken collection (tokens),
' preceded by the add-in number in [] brackets.
Dim tokNumber As Integer = 1
For Each tok As AddInToken In tokens
Console.WriteLine(vbTab & "{0}: {1} - {2}" & _
vbLf & vbTab & "{3}" & _
vbLf & vbTab & "{4}" & _
vbLf & vbTab & "{5} - {6}", _
tokNumber.ToString, tok.Name, _
tok.AddInFullName, tok.AssemblyName, _
tok.Description, tok.Version, tok.Publisher)
tokNumber = tokNumber + 1
Next
Commenti
Questa proprietà ottiene l'autore del componente aggiuntivo come specificato nell'attributo AddInAttribute .