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