Прочетете на английски Редактиране

Споделяне чрез


AddInToken.AssemblyName Property

Definition

Gets the name of the assembly that contains the add-in.

C#
public System.Reflection.AssemblyName AssemblyName { get; }

Property Value

The name of the assembly.

Examples

The following example displays the value of the Name, AddInFullName, Description, AssemblyName, Publisher, and Version properties to the console. This code example is part of a larger example provided for the AddInToken class.

C#
// 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++;
}

Remarks

This property obtains the display name of the assembly that contains the add-in, as it would be returned by the Assembly.FullName property. This value is always available on an instance of an AddInToken object.

Applies to

Продукт Версии
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1