AddInToken.Publisher 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得增益集的發行者。
public:
property System::String ^ Publisher { System::String ^ get(); };
public string Publisher { get; }
member this.Publisher : string
Public ReadOnly Property Publisher As String
屬性值
增益集的發行者,如果 AddInAttribute 屬性中未指定發行者,則為 null
。
範例
下列範例會顯示 主控台的 Name、 AddInFullName、 Description、 AssemblyName、 Publisher和 Version 屬性的值。 此程式代碼範例是針對 類別提供的較大範例的 AddInToken 一部分。
// 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
備註
這個屬性會取得屬性中所 AddInAttribute 指定載入宏的發行者。