File: XhtmlTextWriter.xml

package info (click to toggle)
mono-reference-assemblies 3.12.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 604,240 kB
  • ctags: 625,505
  • sloc: cs: 3,967,741; xml: 2,793,081; ansic: 418,042; java: 60,435; sh: 14,833; makefile: 11,576; sql: 7,956; perl: 1,467; cpp: 1,446; yacc: 1,203; python: 598; asm: 422; sed: 16; php: 1
file content (622 lines) | stat: -rw-r--r-- 29,543 bytes parent folder | download | duplicates (8)
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
<?xml version="1.0" encoding="utf-8"?>
<Type Name="XhtmlTextWriter" FullName="System.Web.UI.XhtmlTextWriter">
  <TypeSignature Language="C#" Value="public class XhtmlTextWriter : System.Web.UI.HtmlTextWriter" />
  <AssemblyInfo>
    <AssemblyName>System.Web</AssemblyName>
    <AssemblyVersion>2.0.0.0</AssemblyVersion>
  </AssemblyInfo>
  <Base>
    <BaseTypeName>System.Web.UI.HtmlTextWriter</BaseTypeName>
  </Base>
  <Interfaces />
  <Docs>
    <since version=".NET 2.0" />
    <remarks>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>XHTML is an XML-compliant markup language, based on HTML 4.1, which allows you to create Web sites that are suitable for multiple device types. It merges the ease of use provided by HTML with the strict element guidelines provided by XML to produce a markup language with a wide range of format and style options, and with reduced markup tag ambiguity. The <see cref="T:System.Web.UI.XhtmlTextWriter" /> class provides formatting capabilities that ASP.NET server controls use when rendering XHTML content to clients. You can use the <see cref="M:System.Web.UI.XhtmlTextWriter.SetDocType(System.Web.UI.XhtmlMobileDocType)" /> method to specify which type of XHTML the text writer renders. Supported document types are defined in the <see cref="T:System.Web.UI.XhtmlMobileDocType" /> enumeration.</para>
      <para>The <see cref="T:System.Web.UI.XhtmlTextWriter" /> class renders two sets of attributes for elements. One set is a collection of common attributes, as referenced in the <see cref="P:System.Web.UI.XhtmlTextWriter.CommonAttributes" /> property. The second set is a collection of element-specific attributes, as referenced in the <see cref="P:System.Web.UI.XhtmlTextWriter.ElementSpecificAttributes" /> property. For more information on the elements and styles that are rendered, see the XHTML modularization specification at the <see cref="http://go.microsoft.com/fwlink/?linkid=37125">World Wide Web Consortium (W3C) Web site</see>.</para>
      <para>You can use the members of the <see cref="T:System.Web.UI.XhtmlTextWriter" /> class and any derived classes to create custom text writers to use in custom XHTML page adapters or class adapters. You can also create derived classes that override the standard behavior of the <see cref="T:System.Web.UI.XhtmlTextWriter" /> class. </para>
      <para>By default, when you are working with browsers that support HTML 4.0, ASP.NET pages and controls render markup that is compatible with the XHTML 1.1 standard. For more information, see <format type="text/html"><a href="1b78d416-66bb-43a5-ac77-c703aab55b97">ASP.NET and XHTML Compliance</a></format>.</para>
      <para>The <see cref="T:System.Web.UI.HtmlTextWriter" /> outputs XHTML unless you configure ASP.NET specifically to not render XHTML markup. For more information, see <format type="text/html"><a href="42483a54-f1ae-44e1-88e6-4370f8690149">How to: Configure ASP.NET Web Sites for Non-XHTML Rendering</a></format>. </para>
    </remarks>
    <summary>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>Writes Extensible Hypertext Markup Language (XHTML)-specific characters, including all variations of XHTML modules that derive from XTHML, to the output stream for an ASP.NET server control for mobile devices. Override the <see cref="T:System.Web.UI.XhtmlTextWriter" /> class to provide custom XHTML rendering for ASP.NET pages and server controls.</para>
    </summary>
  </Docs>
  <Members>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public XhtmlTextWriter (System.IO.TextWriter writer);" />
      <MemberType>Constructor</MemberType>
      <Parameters>
        <Parameter Name="writer" Type="System.IO.TextWriter" />
      </Parameters>
      <Docs>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="M:System.Web.UI.XhtmlTextWriter.#ctor(System.IO.TextWriter)" /> constructor that takes a <see cref="T:System.IO.TextWriter" /> object as a parameter calls the second constructor, passing two parameter values: </para>
          <list type="bullet">
            <item>
              <para>The <see cref="T:System.IO.TextWriter" /> instance.</para>
            </item>
            <item>
              <para>The string value that is specified in the <see cref="F:System.Web.UI.HtmlTextWriter.DefaultTabString" /> field, which defines the tab spacing that is used by the XHTML text writer.</para>
            </item>
          </list>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new instance of the <see cref="T:System.Web.UI.XhtmlTextWriter" /> class that uses the line indentation that is specified in the <see cref="F:System.Web.UI.HtmlTextWriter.DefaultTabString" /> field. Use the <see cref="M:System.Web.UI.XhtmlTextWriter.#ctor(System.IO.TextWriter)" /> constructor if you do not want to change the default line indentation.</para>
        </summary>
        <param name="writer">
          <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.IO.TextWriter" /> instance that renders the XHTML content. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public XhtmlTextWriter (System.IO.TextWriter writer, string tabString);" />
      <MemberType>Constructor</MemberType>
      <Parameters>
        <Parameter Name="writer" Type="System.IO.TextWriter" />
        <Parameter Name="tabString" Type="System.String" />
      </Parameters>
      <Docs>
        <remarks>To be added.</remarks>
        <since version=".NET 2.0" />
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Initializes a new instance of the <see cref="T:System.Web.UI.XhtmlTextWriter" /> class with the specified line indentation.</para>
        </summary>
        <param name="writer">
          <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.IO.TextWriter" /> instance that renders the XHTML content. </param>
        <param name="tabString">
          <attribution license="cc4" from="Microsoft" modified="false" />The string used to render a line indentation.</param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="AddRecognizedAttribute">
      <MemberSignature Language="C#" Value="public virtual void AddRecognizedAttribute (string elementName, string attributeName);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="elementName" Type="System.String" />
        <Parameter Name="attributeName" Type="System.String" />
      </Parameters>
      <Docs>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Use the <see cref="M:System.Web.UI.XhtmlTextWriter.AddRecognizedAttribute(System.String,System.String)" /> method to add an attribute to an XHTML element. The added attribute can then be recognized and rendered by the <see cref="T:System.Web.UI.XhtmlTextWriter" /> object. To prevent the writer from rendering a common attribute of an XHTML element, use the <see cref="M:System.Web.UI.XhtmlTextWriter.RemoveRecognizedAttribute(System.String,System.String)" /> method.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Adds an attribute to an XHTML element. The collection of element-specific attributes for the <see cref="T:System.Web.UI.XhtmlTextWriter" /> object is referenced by the <see cref="P:System.Web.UI.XhtmlTextWriter.ElementSpecificAttributes" /> property.</para>
        </summary>
        <param name="elementName">
          <attribution license="cc4" from="Microsoft" modified="false" />The XHTML element to add the attribute to.</param>
        <param name="attributeName">
          <attribution license="cc4" from="Microsoft" modified="false" />The attribute to add.</param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="CommonAttributes">
      <MemberSignature Language="C#" Value="protected System.Collections.Hashtable CommonAttributes { get; }" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Collections.Hashtable</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="P:System.Web.UI.XhtmlTextWriter.CommonAttributes" /> collection contains attributes that are allowed in XHTML elements and that are not suppressed in the <see cref="P:System.Web.UI.XhtmlTextWriter.SuppressCommonAttributes" /> property. For more information on common attributes, see the <see cref="http://go.microsoft.com/fwlink/?linkid=37125">World Wide Web Consortium (W3C) Web site</see>.</para>
          <para>When a new instance of the <see cref="T:System.Web.UI.XhtmlTextWriter" /> class is created, the common attributes that are initialized are:</para>
          <list type="bullet">
            <item>
              <para>class</para>
            </item>
            <item>
              <para>id</para>
            </item>
            <item>
              <para>title</para>
            </item>
            <item>
              <para>xml:lang</para>
            </item>
          </list>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets a <see cref="T:System.Collections.Hashtable" /> object containing common attributes of the markup tags for the <see cref="T:System.Web.UI.XhtmlTextWriter" /> object.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="ElementSpecificAttributes">
      <MemberSignature Language="C#" Value="protected System.Collections.Hashtable ElementSpecificAttributes { get; }" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Collections.Hashtable</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Use the <see cref="M:System.Web.UI.XhtmlTextWriter.AddRecognizedAttribute(System.String,System.String)" /> method to add recognized attributes to an XHTML element. To remove common attributes on an XHTML element, use the <see cref="M:System.Web.UI.XhtmlTextWriter.RemoveRecognizedAttribute(System.String,System.String)" /> method.</para>
          <para>When a new instance of the <see cref="T:System.Web.UI.XhtmlTextWriter" /> class is created, the <see cref="T:System.Collections.Hashtable" /> object of element-specific attributes is populated with the attributes shown in the following table.</para>
          <list type="table">
            <listheader>
              <item>
                <term>
                  <para>Element</para>
                </term>
                <description>
                  <para>Attributes</para>
                </description>
              </item>
            </listheader>
            <item>
              <term>
                <para>&lt;a&gt;</para>
              </term>
              <description>
                <para>accesskey, href, charset, hreflang, rel, type, rev, title, tabindex</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;base&gt;</para>
              </term>
              <description>
                <para>href</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;blockquote&gt;</para>
              </term>
              <description>
                <para>cite</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;br&gt;</para>
              </term>
              <description>
                <para>id, class, title</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;form&gt;</para>
              </term>
              <description>
                <para>action, method, enctype</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;head&gt;</para>
              </term>
              <description>
                <para>xml:lang</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;html&gt;</para>
              </term>
              <description>
                <para>version, xml:lang, xmlns</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;img&gt;</para>
              </term>
              <description>
                <para>src, alt, width, longdesc, height</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;input&gt;</para>
              </term>
              <description>
                <para>size, accesskey, title, name, type, disabled, value, src, checked, maxlength, tabindex</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;label&gt;</para>
              </term>
              <description>
                <para>accesskey, for</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;li&gt;</para>
              </term>
              <description>
                <para>value</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;link&gt;</para>
              </term>
              <description>
                <para>hreflang, rev, type, charset, rel, href, media</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;meta&gt;</para>
              </term>
              <description>
                <para>content, name, xml:lang, http-equiv, scheme</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;object&gt;</para>
              </term>
              <description>
                <para>codebase, classid, data, standby, name, type, height, archive, declare, width, tabindex, codetype</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;ol&gt;</para>
              </term>
              <description>
                <para>start</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;optgroup&gt;</para>
              </term>
              <description>
                <para>label, disabled</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;option&gt;</para>
              </term>
              <description>
                <para>selected, value</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;param&gt;</para>
              </term>
              <description>
                <para>id, name, valuetype, value, type</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;pre&gt;</para>
              </term>
              <description>
                <para>xml:space</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;q&gt;</para>
              </term>
              <description>
                <para>cite</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;select&gt;</para>
              </term>
              <description>
                <para>name, tabindex, disabled, multiple, size</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;style&gt;</para>
              </term>
              <description>
                <para>xml:lang, xml:space, type, title, media</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;table&gt;</para>
              </term>
              <description>
                <para>width, summary</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;textarea&gt;</para>
              </term>
              <description>
                <para>name, cols, accesskey, tabindex, rows</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;td&gt;</para>
              </term>
              <description>
                <para>headers, align, rowspan, colspan, axis, scope, abbr, valign</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;th&gt;</para>
              </term>
              <description>
                <para>headers, align, rowspan, colspan, axis, scope, abbr, valign</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;title&gt;</para>
              </term>
              <description>
                <para>xml:lang</para>
              </description>
            </item>
            <item>
              <term>
                <para>&lt;tr&gt;</para>
              </term>
              <description>
                <para>align, valign</para>
              </description>
            </item>
          </list>
          <para>For more information on the elements and styles that are rendered, see the XHTML modularization specification at the <see cref="http://go.microsoft.com/fwlink/?linkid=37125">World Wide Web Consortium (W3C) Web site</see>.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets a <see cref="T:System.Collections.Hashtable" /> object containing element-specific attributes.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="IsValidFormAttribute">
      <MemberSignature Language="C#" Value="public override bool IsValidFormAttribute (string attributeName);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="attributeName" Type="System.String" />
      </Parameters>
      <Docs>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>This method is useful to conditionally render an attribute depending on whether it is supported by the XHTML document type of the requesting device.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Checks an XHTML attribute to ensure that it can be rendered in the opening tag of a &lt;form&gt; element.</para>
        </summary>
        <returns>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>true if the attribute can be applied to a &lt;form&gt; element; otherwise, false.</para>
        </returns>
        <param name="attributeName">
          <attribution license="cc4" from="Microsoft" modified="false" />The attribute name to check. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="OnAttributeRender">
      <MemberSignature Language="C#" Value="protected override bool OnAttributeRender (string name, string value, System.Web.UI.HtmlTextWriterAttribute key);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="name" Type="System.String" />
        <Parameter Name="value" Type="System.String" />
        <Parameter Name="key" Type="System.Web.UI.HtmlTextWriterAttribute" />
      </Parameters>
      <Docs>
        <remarks>To be added.</remarks>
        <since version=".NET 2.0" />
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Determines whether the specified XHTML attribute and its value can be rendered to the current markup element.</para>
        </summary>
        <returns>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>true if the attribute is rendered to the page; otherwise, false.</para>
        </returns>
        <param name="name">
          <attribution license="cc4" from="Microsoft" modified="false" />The XHTML attribute to render. </param>
        <param name="value">
          <attribution license="cc4" from="Microsoft" modified="false" />The value assigned to the XHTML attribute. </param>
        <param name="key">
          <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.HtmlTextWriterAttribute" /> enumeration value associated with the XHTML attribute. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="OnStyleAttributeRender">
      <MemberSignature Language="C#" Value="protected override bool OnStyleAttributeRender (string name, string value, System.Web.UI.HtmlTextWriterStyle key);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="name" Type="System.String" />
        <Parameter Name="value" Type="System.String" />
        <Parameter Name="key" Type="System.Web.UI.HtmlTextWriterStyle" />
      </Parameters>
      <Docs>
        <remarks>To be added.</remarks>
        <since version=".NET 2.0" />
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Determines whether the specified XHTML style attribute and its value can be rendered to the current markup element.</para>
        </summary>
        <returns>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>true if the style attribute is rendered; otherwise, false.</para>
        </returns>
        <param name="name">
          <attribution license="cc4" from="Microsoft" modified="false" />The XHTML style attribute to render. </param>
        <param name="value">
          <attribution license="cc4" from="Microsoft" modified="false" />The value assigned to the XHTML style attribute. </param>
        <param name="key">
          <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.HtmlTextWriterStyle" /> enumeration value associated with the XHTML style attribute. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="RemoveRecognizedAttribute">
      <MemberSignature Language="C#" Value="public virtual void RemoveRecognizedAttribute (string elementName, string attributeName);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="elementName" Type="System.String" />
        <Parameter Name="attributeName" Type="System.String" />
      </Parameters>
      <Docs>
        <remarks>To be added.</remarks>
        <since version=".NET 2.0" />
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Removes an attribute from the <see cref="P:System.Web.UI.XhtmlTextWriter.ElementSpecificAttributes" /> collection of an element.</para>
        </summary>
        <param name="elementName">
          <attribution license="cc4" from="Microsoft" modified="false" />The XHTML element to remove an attribute from.</param>
        <param name="attributeName">
          <attribution license="cc4" from="Microsoft" modified="false" />The attribute to remove from the specified XHTML element.</param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="SetDocType">
      <MemberSignature Language="C#" Value="public virtual void SetDocType (System.Web.UI.XhtmlMobileDocType docType);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="docType" Type="System.Web.UI.XhtmlMobileDocType" />
      </Parameters>
      <Docs>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Use the <see cref="M:System.Web.UI.XhtmlTextWriter.SetDocType(System.Web.UI.XhtmlMobileDocType)" /> method in a custom page adapter to define the type of XHTML that you want to render to the requesting device. Supported document types are defined in the <see cref="T:System.Web.UI.XhtmlMobileDocType" /> enumeration.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Specifies the XHTML document type for the text writer to render to the page or control.</para>
        </summary>
        <param name="docType">
          <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Web.UI.XhtmlMobileDocType" /> enumeration values. </param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="SuppressCommonAttributes">
      <MemberSignature Language="C#" Value="protected System.Collections.Hashtable SuppressCommonAttributes { get; }" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Collections.Hashtable</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The suppressed attribute collection includes a list of XHTML elements for which <see cref="P:System.Web.UI.XhtmlTextWriter.CommonAttributes" /> attributes are not rendered. </para>
          <para>When a new instance of the <see cref="T:System.Web.UI.XhtmlTextWriter" /> class is created, the <see cref="T:System.Collections.Hashtable" /> object of elements for which <see cref="P:System.Web.UI.XhtmlTextWriter.CommonAttributes" /> attributes are suppressed includes: </para>
          <list type="bullet">
            <item>
              <para>base</para>
            </item>
            <item>
              <para>meta</para>
            </item>
            <item>
              <para>br</para>
            </item>
            <item>
              <para>head</para>
            </item>
            <item>
              <para>title</para>
            </item>
            <item>
              <para>html</para>
            </item>
            <item>
              <para>style</para>
            </item>
          </list>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets a <see cref="T:System.Collections.Hashtable" /> object of elements for which <see cref="P:System.Web.UI.XhtmlTextWriter.CommonAttributes" /> attributes are suppressed.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="WriteBreak">
      <MemberSignature Language="C#" Value="public override void WriteBreak ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <remarks>To be added.</remarks>
        <since version=".NET 2.0" />
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Writes a &lt;br/&gt; element to the XHTML output stream.</para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
  </Members>
</Type>