RenderTreeBuilder.AddContent メソッド

定義

オーバーロード

AddContent(Int32, Object)

テキスト コンテンツを表すフレームを追加します。

AddContent(Int32, Nullable<MarkupString>)

マークアップ コンテンツを表すフレームを追加します。

AddContent(Int32, String)

テキスト コンテンツを表すフレームを追加します。

AddContent(Int32, MarkupString)

マークアップ コンテンツを表すフレームを追加します。

AddContent(Int32, RenderFragment)

コンテンツの任意のフラグメントを表すフレームを追加します。

AddContent<TValue>(Int32, RenderFragment<TValue>, TValue)

コンテンツの任意のフラグメントを表すフレームを追加します。

AddContent(Int32, Object)

テキスト コンテンツを表すフレームを追加します。

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)

パラメーター

sequence
Int32

ソース コード内の命令の位置を表す整数。

textContent
Object

新しいテキスト フレームのコンテンツ。

適用対象

AddContent(Int32, Nullable<MarkupString>)

マークアップ コンテンツを表すフレームを追加します。

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))

パラメーター

sequence
Int32

ソース コード内の命令の位置を表す整数。

markupContent
Nullable<MarkupString>

新しいテキスト フレームのコンテンツ、または null。

適用対象

AddContent(Int32, String)

テキスト コンテンツを表すフレームを追加します。

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)

パラメーター

sequence
Int32

ソース コード内の命令の位置を表す整数。

textContent
String

新しいテキスト フレームのコンテンツ。

適用対象

AddContent(Int32, MarkupString)

マークアップ コンテンツを表すフレームを追加します。

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)

パラメーター

sequence
Int32

ソース コード内の命令の位置を表す整数。

markupContent
MarkupString

新しいマークアップ フレームのコンテンツ。

適用対象

AddContent(Int32, RenderFragment)

コンテンツの任意のフラグメントを表すフレームを追加します。

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)

パラメーター

sequence
Int32

ソース コード内の命令の位置を表す整数。

fragment
RenderFragment

追加するコンテンツ。

適用対象

AddContent<TValue>(Int32, RenderFragment<TValue>, TValue)

コンテンツの任意のフラグメントを表すフレームを追加します。

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)

型パラメーター

TValue

パラメーター

sequence
Int32

ソース コード内の命令の位置を表す整数。

fragment
RenderFragment<TValue>

追加するコンテンツ。

value
TValue

によって fragment使用される値。

適用対象