RenderTreeBuilder.AddContent Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
AddContent(Int32, Object) |
Acrescenta um quadro que representa o conteúdo do texto. |
AddContent(Int32, Nullable<MarkupString>) |
Acrescenta um quadro que representa o conteúdo da marcação. |
AddContent(Int32, String) |
Acrescenta um quadro que representa o conteúdo do texto. |
AddContent(Int32, MarkupString) |
Acrescenta um quadro que representa o conteúdo da marcação. |
AddContent(Int32, RenderFragment) |
Acrescenta quadros que representam um fragmento arbitrário de conteúdo. |
AddContent<TValue>(Int32, RenderFragment<TValue>, TValue) |
Acrescenta quadros que representam um fragmento arbitrário de conteúdo. |
AddContent(Int32, Object)
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
Acrescenta um quadro que representa o conteúdo do texto.
public:
void AddContent(int sequence, System::Object ^ textContent);
public void AddContent (int sequence, object textContent);
public void AddContent (int sequence, object? textContent);
member this.AddContent : int * obj -> unit
Public Sub AddContent (sequence As Integer, textContent As Object)
Parâmetros
- sequence
- Int32
Um inteiro que representa a posição da instrução no código-fonte.
- textContent
- Object
Conteúdo para o novo quadro de texto.
Aplica-se a
AddContent(Int32, Nullable<MarkupString>)
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
Acrescenta um quadro que representa o conteúdo da marcação.
public void AddContent (int sequence, Microsoft.AspNetCore.Components.MarkupString? markupContent);
member this.AddContent : int * Nullable<Microsoft.AspNetCore.Components.MarkupString> -> unit
Public Sub AddContent (sequence As Integer, markupContent As Nullable(Of MarkupString))
Parâmetros
- sequence
- Int32
Um inteiro que representa a posição da instrução no código-fonte.
- markupContent
- Nullable<MarkupString>
Conteúdo para o novo quadro de texto ou nulo.
Aplica-se a
AddContent(Int32, String)
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
Acrescenta um quadro que representa o conteúdo do texto.
public:
void AddContent(int sequence, System::String ^ textContent);
public void AddContent (int sequence, string textContent);
public void AddContent (int sequence, string? textContent);
member this.AddContent : int * string -> unit
Public Sub AddContent (sequence As Integer, textContent As String)
Parâmetros
- sequence
- Int32
Um inteiro que representa a posição da instrução no código-fonte.
- textContent
- String
Conteúdo para o novo quadro de texto.
Aplica-se a
AddContent(Int32, MarkupString)
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
Acrescenta um quadro que representa o conteúdo da marcação.
public:
void AddContent(int sequence, Microsoft::AspNetCore::Components::MarkupString markupContent);
public void AddContent (int sequence, Microsoft.AspNetCore.Components.MarkupString markupContent);
member this.AddContent : int * Microsoft.AspNetCore.Components.MarkupString -> unit
Public Sub AddContent (sequence As Integer, markupContent As MarkupString)
Parâmetros
- sequence
- Int32
Um inteiro que representa a posição da instrução no código-fonte.
- markupContent
- MarkupString
Conteúdo para o novo quadro de marcação.
Aplica-se a
AddContent(Int32, RenderFragment)
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
Acrescenta quadros que representam um fragmento arbitrário de conteúdo.
public:
void AddContent(int sequence, Microsoft::AspNetCore::Components::RenderFragment ^ fragment);
public void AddContent (int sequence, Microsoft.AspNetCore.Components.RenderFragment fragment);
public void AddContent (int sequence, Microsoft.AspNetCore.Components.RenderFragment? fragment);
member this.AddContent : int * Microsoft.AspNetCore.Components.RenderFragment -> unit
Public Sub AddContent (sequence As Integer, fragment As RenderFragment)
Parâmetros
- sequence
- Int32
Um inteiro que representa a posição da instrução no código-fonte.
- fragment
- RenderFragment
Conteúdo a ser acrescentado.
Aplica-se a
AddContent<TValue>(Int32, RenderFragment<TValue>, TValue)
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
- Origem:
- RenderTreeBuilder.cs
Acrescenta quadros que representam um fragmento arbitrário de conteúdo.
public:
generic <typename TValue>
void AddContent(int sequence, Microsoft::AspNetCore::Components::RenderFragment<TValue> ^ fragment, TValue value);
public void AddContent<TValue> (int sequence, Microsoft.AspNetCore.Components.RenderFragment<TValue> fragment, TValue value);
public void AddContent<TValue> (int sequence, Microsoft.AspNetCore.Components.RenderFragment<TValue>? fragment, TValue value);
member this.AddContent : int * Microsoft.AspNetCore.Components.RenderFragment<'Value> * 'Value -> unit
Public Sub AddContent(Of TValue) (sequence As Integer, fragment As RenderFragment(Of TValue), value As TValue)
Parâmetros de tipo
- TValue
Parâmetros
- sequence
- Int32
Um inteiro que representa a posição da instrução no código-fonte.
- fragment
- RenderFragment<TValue>
Conteúdo a ser acrescentado.
- value
- TValue
O valor usado por fragment
.