TagPrefixInfo.TagPrefix Propriedade
Definição
Obtém ou define o prefixo da marca que está sendo associado a um arquivo de origem ou namespace e assembly.Gets or sets the tag prefix that is being associated with a source file or namespace and assembly.
public:
property System::String ^ TagPrefix { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("tagPrefix", DefaultValue=Mono.Cecil.CustomAttributeArgument, IsRequired=true)]
[System.Configuration.StringValidator(MinLength=1)]
public string TagPrefix { get; set; }
[<System.Configuration.ConfigurationProperty("tagPrefix", DefaultValue=Mono.Cecil.CustomAttributeArgument, IsRequired=true)>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.TagPrefix : string with get, set
Public Property TagPrefix As String
Valor da propriedade
O prefixo da marca.The tag prefix.
- Atributos
Exemplos
O exemplo de código a seguir mostra como usar a TagPrefix propriedade.The following code example shows how to use the TagPrefix property. Este exemplo de código faz parte de um exemplo maior fornecido para a PagesSection classe.This code example is part of a larger example provided for the PagesSection class.
// Get all current Controls in the collection.
for (int i = 0; i < pagesSection.Controls.Count; i++)
{
Console.WriteLine("Control {0}:", i);
Console.WriteLine(" TagPrefix = '{0}' ",
pagesSection.Controls[i].TagPrefix);
Console.WriteLine(" TagName = '{0}' ",
pagesSection.Controls[i].TagName);
Console.WriteLine(" Source = '{0}' ",
pagesSection.Controls[i].Source);
Console.WriteLine(" Namespace = '{0}' ",
pagesSection.Controls[i].Namespace);
Console.WriteLine(" Assembly = '{0}' ",
pagesSection.Controls[i].Assembly);
}
' Get all current Controls in the collection.
Dim j As Int32
For j = 0 To pagesSection.Controls.Count - 1
Console.WriteLine("Control {0}:", j)
Console.WriteLine(" TagPrefix = '{0}' ", _
pagesSection.Controls(j).TagPrefix)
Console.WriteLine(" TagName = '{0}' ", _
pagesSection.Controls(j).TagName)
Console.WriteLine(" Source = '{0}' ", _
pagesSection.Controls(j).Source)
Console.WriteLine(" Namespace = '{0}' ", _
pagesSection.Controls(j).Namespace)
Console.WriteLine(" Assembly = '{0}' ", _
pagesSection.Controls(j).Assembly)
Next
Comentários
A TagPrefix propriedade define o alias usado para o namespace em que reside o controle.The TagPrefix property defines the alias used for the namespace where the control resides. Ele se aplica a controles de usuário e personalizados.It applies to user and custom controls. Esse é o valor que precederia o nome da marca no código ASP.NET.This is the value that would precede the tag name in the ASP.NET code. Por exemplo, "myTag" em <myTag: myControl /> .For example "myTag" in <myTag: myControl />.