AddInToken.Publisher 属性
定义
获取外接程序的发布者。Gets the publisher of the add-in.
public:
property System::String ^ Publisher { System::String ^ get(); };
public string Publisher { get; }
member this.Publisher : string
Public ReadOnly Property Publisher As String
属性值
外接程序的发行者;如果 AddInAttribute 特性中未指定发行者,则为 null。The publisher of the add-in, or null if the publisher is not specified in the AddInAttribute attribute.
示例
下面的示例显示了控制台的、、、、 Name AddInFullName Description AssemblyName Publisher 和 Version 属性的值。The following example displays the value of the Name, AddInFullName, Description, AssemblyName, Publisher, and Version properties to the console. 此代码示例是为类提供的更大示例的一部分 AddInToken 。This code example is part of a larger example provided for the AddInToken class.
// 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 。This property obtains the publisher of the add-in as specified in the AddInAttribute attribute.