summaryrefslogtreecommitdiff
path: root/.packages/microsoft.aspnetcore.app.ref/3.0.1/ref/netcoreapp3.0/Microsoft.AspNetCore.Html.Abstractions.xml
blob: 3c4fcff44cc7503456312f27186424c8187a6cfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.AspNetCore.Html.Abstractions</name>
    </assembly>
    <members>
        <member name="T:Microsoft.AspNetCore.Html.HtmlContentBuilder">
            <summary>
            An <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/> implementation using an in memory list.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilder.#ctor">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.Html.HtmlContentBuilder"/>.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilder.#ctor(System.Int32)">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.Html.HtmlContentBuilder"/> with the given initial capacity.
            </summary>
            <param name="capacity">The initial capacity of the backing store.</param>
        </member>
        <member name="P:Microsoft.AspNetCore.Html.HtmlContentBuilder.Count">
            <summary>
            Gets the number of elements in the <see cref="T:Microsoft.AspNetCore.Html.HtmlContentBuilder"/>.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilder.#ctor(System.Collections.Generic.IList{System.Object})">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.Html.HtmlContentBuilder"/> with the given list of entries.
            </summary>
            <param name="entries">
            The list of entries. The <see cref="T:Microsoft.AspNetCore.Html.HtmlContentBuilder"/> will use this list without making a copy.
            </param>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilder.Append(System.String)">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilder.AppendHtml(Microsoft.AspNetCore.Html.IHtmlContent)">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilder.AppendHtml(System.String)">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilder.Clear">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilder.CopyTo(Microsoft.AspNetCore.Html.IHtmlContentBuilder)">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilder.MoveTo(Microsoft.AspNetCore.Html.IHtmlContentBuilder)">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilder.WriteTo(System.IO.TextWriter,System.Text.Encodings.Web.HtmlEncoder)">
            <inheritdoc />
        </member>
        <member name="T:Microsoft.AspNetCore.Html.HtmlContentBuilderExtensions">
            <summary>
            Extension methods for <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilderExtensions.AppendFormat(Microsoft.AspNetCore.Html.IHtmlContentBuilder,System.String,System.Object[])">
            <summary>
            Appends the specified <paramref name="format"/> to the existing content after replacing each format
            item with the HTML encoded <see cref="T:System.String"/> representation of the corresponding item in the
            <paramref name="args"/> array.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</param>
            <param name="format">
            The composite format <see cref="T:System.String"/> (see http://msdn.microsoft.com/en-us/library/txafckwd.aspx).
            The format string is assumed to be HTML encoded as-provided, and no further encoding will be performed.
            </param>
            <param name="args">
            The object array to format. Each element in the array will be formatted and then HTML encoded.
            </param>
            <returns>A reference to this instance after the append operation has completed.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilderExtensions.AppendFormat(Microsoft.AspNetCore.Html.IHtmlContentBuilder,System.IFormatProvider,System.String,System.Object[])">
            <summary>
            Appends the specified <paramref name="format"/> to the existing content with information from the
            <paramref name="formatProvider"/> after replacing each format item with the HTML encoded
            <see cref="T:System.String"/> representation of the corresponding item in the <paramref name="args"/> array.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</param>
            <param name="formatProvider">An object that supplies culture-specific formatting information.</param>
            <param name="format">
            The composite format <see cref="T:System.String"/> (see http://msdn.microsoft.com/en-us/library/txafckwd.aspx).
            The format string is assumed to be HTML encoded as-provided, and no further encoding will be performed.
            </param>
            <param name="args">
            The object array to format. Each element in the array will be formatted and then HTML encoded.
            </param>
            <returns>A reference to this instance after the append operation has completed.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilderExtensions.AppendLine(Microsoft.AspNetCore.Html.IHtmlContentBuilder)">
            <summary>
            Appends an <see cref="P:System.Environment.NewLine"/>.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilderExtensions.AppendLine(Microsoft.AspNetCore.Html.IHtmlContentBuilder,System.String)">
            <summary>
            Appends an <see cref="P:System.Environment.NewLine"/> after appending the <see cref="T:System.String"/> value.
            The value is treated as unencoded as-provided, and will be HTML encoded before writing to output.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</param>
            <param name="unencoded">The <see cref="T:System.String"/> to append.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilderExtensions.AppendLine(Microsoft.AspNetCore.Html.IHtmlContentBuilder,Microsoft.AspNetCore.Html.IHtmlContent)">
            <summary>
            Appends an <see cref="P:System.Environment.NewLine"/> after appending the <see cref="T:Microsoft.AspNetCore.Html.IHtmlContent"/> value.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</param>
            <param name="content">The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContent"/> to append.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilderExtensions.AppendHtmlLine(Microsoft.AspNetCore.Html.IHtmlContentBuilder,System.String)">
            <summary>
            Appends an <see cref="P:System.Environment.NewLine"/> after appending the <see cref="T:System.String"/> value.
            The value is treated as HTML encoded as-provided, and no further encoding will be performed.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</param>
            <param name="encoded">The HTML encoded <see cref="T:System.String"/> to append.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilderExtensions.SetContent(Microsoft.AspNetCore.Html.IHtmlContentBuilder,System.String)">
            <summary>
            Sets the content to the <see cref="T:System.String"/> value. The value is treated as unencoded as-provided,
            and will be HTML encoded before writing to output.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</param>
            <param name="unencoded">The <see cref="T:System.String"/> value that replaces the content.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilderExtensions.SetHtmlContent(Microsoft.AspNetCore.Html.IHtmlContentBuilder,Microsoft.AspNetCore.Html.IHtmlContent)">
            <summary>
            Sets the content to the <see cref="T:Microsoft.AspNetCore.Html.IHtmlContent"/> value.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</param>
            <param name="content">The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContent"/> value that replaces the content.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlContentBuilderExtensions.SetHtmlContent(Microsoft.AspNetCore.Html.IHtmlContentBuilder,System.String)">
            <summary>
            Sets the content to the <see cref="T:System.String"/> value. The value is treated as HTML encoded as-provided, and
            no further encoding will be performed.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</param>
            <param name="encoded">The HTML encoded <see cref="T:System.String"/> that replaces the content.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</returns>
        </member>
        <member name="T:Microsoft.AspNetCore.Html.HtmlFormattableString">
            <summary>
            An <see cref="T:Microsoft.AspNetCore.Html.IHtmlContent"/> implementation of composite string formatting
            (see https://msdn.microsoft.com/en-us/library/txafckwd(v=vs.110).aspx) which HTML encodes
            formatted arguments.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlFormattableString.#ctor(System.String,System.Object[])">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.Html.HtmlFormattableString"/> with the given <paramref name="format"/> and
            <paramref name="args"/>.
            </summary>
            <param name="format">A composite format string.</param>
            <param name="args">An array that contains objects to format.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlFormattableString.#ctor(System.IFormatProvider,System.String,System.Object[])">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.Html.HtmlFormattableString"/> with the given <paramref name="formatProvider"/>,
            <paramref name="format"/> and <paramref name="args"/>.
            </summary>
            <param name="formatProvider">An object that provides culture-specific formatting information.</param>
            <param name="format">A composite format string.</param>
            <param name="args">An array that contains objects to format.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlFormattableString.WriteTo(System.IO.TextWriter,System.Text.Encodings.Web.HtmlEncoder)">
            <inheritdoc />
        </member>
        <member name="T:Microsoft.AspNetCore.Html.HtmlString">
            <summary>
            An <see cref="T:Microsoft.AspNetCore.Html.IHtmlContent"/> implementation that wraps an HTML encoded <see cref="T:System.String"/>.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Html.HtmlString.NewLine">
            <summary>
            An <see cref="T:Microsoft.AspNetCore.Html.HtmlString"/> instance for <see cref="P:System.Environment.NewLine"/>.
            </summary>
        </member>
        <member name="F:Microsoft.AspNetCore.Html.HtmlString.Empty">
            <summary>
            An <see cref="T:Microsoft.AspNetCore.Html.HtmlString"/> instance for <see cref="F:System.String.Empty"/>.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlString.#ctor(System.String)">
            <summary>
            Creates a new <see cref="T:Microsoft.AspNetCore.Html.HtmlString"/>.
            </summary>
            <param name="value">The HTML encoded value.</param>
        </member>
        <member name="P:Microsoft.AspNetCore.Html.HtmlString.Value">
            <summary>
            Gets the HTML encoded value.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlString.WriteTo(System.IO.TextWriter,System.Text.Encodings.Web.HtmlEncoder)">
            <inheritdoc />
        </member>
        <member name="M:Microsoft.AspNetCore.Html.HtmlString.ToString">
            <inheritdoc />
        </member>
        <member name="T:Microsoft.AspNetCore.Html.IHtmlContent">
            <summary>
            HTML content which can be written to a TextWriter.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.IHtmlContent.WriteTo(System.IO.TextWriter,System.Text.Encodings.Web.HtmlEncoder)">
            <summary>
            Writes the content by encoding it with the specified <paramref name="encoder"/>
            to the specified <paramref name="writer"/>.
            </summary>
            <param name="writer">The <see cref="T:System.IO.TextWriter"/> to which the content is written.</param>
            <param name="encoder">The <see cref="T:System.Text.Encodings.Web.HtmlEncoder"/> which encodes the content to be written.</param>
        </member>
        <member name="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder">
            <summary>
            A builder for HTML content.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.IHtmlContentBuilder.AppendHtml(Microsoft.AspNetCore.Html.IHtmlContent)">
            <summary>
            Appends an <see cref="T:Microsoft.AspNetCore.Html.IHtmlContent"/> instance.
            </summary>
            <param name="content">The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContent"/> to append.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.IHtmlContentBuilder.Append(System.String)">
            <summary>
            Appends a <see cref="T:System.String"/> value. The value is treated as unencoded as-provided, and will be HTML
            encoded before writing to output.
            </summary>
            <param name="unencoded">The <see cref="T:System.String"/> to append.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.IHtmlContentBuilder.AppendHtml(System.String)">
            <summary>
            Appends an HTML encoded <see cref="T:System.String"/> value. The value is treated as HTML encoded as-provided, and
            no further encoding will be performed.
            </summary>
            <param name="encoded">The HTML encoded <see cref="T:System.String"/> to append.</param>
            <returns>The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.IHtmlContentBuilder.Clear">
            <summary>
            Clears the content.
            </summary>
            <returns>The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</returns>
        </member>
        <member name="T:Microsoft.AspNetCore.Html.IHtmlContentContainer">
            <summary>
            Defines a contract for <see cref="T:Microsoft.AspNetCore.Html.IHtmlContent"/> instances made up of several components which
            can be copied into an <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.IHtmlContentContainer.CopyTo(Microsoft.AspNetCore.Html.IHtmlContentBuilder)">
            <summary>
            Copies the contained content of this <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentContainer"/> into <paramref name="builder"/>.
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.Html.IHtmlContentContainer.MoveTo(Microsoft.AspNetCore.Html.IHtmlContentBuilder)">
            <summary>
            <para>
            Moves the contained content of this <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentContainer"/> into <paramref name="builder"/>.
            </para>
            <para>
            After <see cref="M:Microsoft.AspNetCore.Html.IHtmlContentContainer.MoveTo(Microsoft.AspNetCore.Html.IHtmlContentBuilder)"/> is called, this <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentContainer"/> instance should be left
            in an empty state.
            </para>
            </summary>
            <param name="builder">The <see cref="T:Microsoft.AspNetCore.Html.IHtmlContentBuilder"/>.</param>
        </member>
    </members>
</doc>