AddInToken.AddInFullName Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera przestrzeń nazw i typ dodatku.
public:
property System::String ^ AddInFullName { System::String ^ get(); };
public string AddInFullName { get; }
member this.AddInFullName : string
Public ReadOnly Property AddInFullName As String
Wartość właściwości
Typ dodatku, w pełni kwalifikowany przez jego przestrzeń nazw.
Przykłady
W poniższym przykładzie wyświetlana jest wartość Namewłaściwości , , AddInFullNameDescription, AssemblyName, Publisheri Version w konsoli programu . Ten przykład kodu jest częścią większego przykładu podanego AddInToken dla klasy.
// 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
Uwagi
Ta właściwość uzyskuje pełną nazwę dodatku, ponieważ zostanie zwrócona przez Type.FullName właściwość . Ta wartość jest zawsze dostępna w wystąpieniu AddInToken obiektu.