AddInToken.AssemblyName Property
Gets the name of the assembly that contains the add-in.
Namespace: System.AddIn.Hosting
Assembly: System.AddIn (in System.AddIn.dll)
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.
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.
// 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++; }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.