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
|
<?xml version="1.0" encoding="utf-8"?>
<Type Name="PageAdapter" FullName="System.Web.UI.Adapters.PageAdapter">
<TypeSignature Language="C#" Value="public abstract class PageAdapter : System.Web.UI.Adapters.ControlAdapter" />
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Web.UI.Adapters.ControlAdapter</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.Web.UI.Adapters.PageAdapter" /> class is an abstract class that adapts a Web page for a specific class of browsers, defined by the markup language that the browser uses (for example, HTML or XHTML). Much of the adaptability in rendering behavior can be encapsulated in the specialized text writer classes that derive from the <see cref="T:System.Web.UI.HtmlTextWriter" /> class, so it is not always necessary to provide a page adapter.</para>
<para>Most members of derived page adapters are called from the <see cref="T:System.Web.UI.Page" /> class or from control adapters. First, the <see cref="T:System.Web.UI.Page" /> class or control adapters detect the presence of the derived page adapter, and then call the member, or provide the functionality if the page adapter is not present.</para>
<para>The members of the <see cref="T:System.Web.UI.Adapters.PageAdapter" /> class provide the following functionality:</para>
<list type="bullet">
<item>
<para>The <see cref="P:System.Web.UI.Adapters.PageAdapter.CacheVaryByHeaders" /> and <see cref="P:System.Web.UI.Adapters.PageAdapter.CacheVaryByParams" /> properties define additional HTTP headers and HTTP GET and POST parameters that can be used to vary caching. They are called during cache initialization from the <see cref="T:System.Web.UI.Page" /> class.</para>
</item>
<item>
<para>The <see cref="M:System.Web.UI.Adapters.PageAdapter.GetStatePersister" /> method returns an object that can be used to persist the combined view and control states of the page. It is referenced from the <see cref="P:System.Web.UI.Page.PageStatePersister" /> property if a derived page adapter is present.</para>
</item>
<item>
<para>The <see cref="M:System.Web.UI.Adapters.PageAdapter.GetPostBackFormReference(System.String)" /> method provides a DHTML code fragment that can be used to reference forms in scripts.</para>
</item>
<item>
<para>The <see cref="M:System.Web.UI.Adapters.PageAdapter.DeterminePostBackMode" /> method returns a collection of the postback variables if the page is in postback. It is called by the .NET Framework instead of the <see cref="M:System.Web.UI.Page.DeterminePostBackMode" /> method if a derived page adapter is present. </para>
</item>
<item>
<para>The <see cref="Overload:System.Web.UI.Adapters.PageAdapter.RenderBeginHyperlink" /> and <see cref="M:System.Web.UI.Adapters.PageAdapter.RenderEndHyperlink(System.Web.UI.HtmlTextWriter)" /> methods are used by control adapters to render hyperlinks if a derived page adapter is present. </para>
</item>
<item>
<para>The <see cref="Overload:System.Web.UI.Adapters.PageAdapter.RenderPostBackEvent" /> method renders a hyperlink or postback client tag that can submit the form. </para>
</item>
<item>
<para>The <see cref="M:System.Web.UI.Adapters.PageAdapter.RegisterRadioButton(System.Web.UI.WebControls.RadioButton)" /> and <see cref="M:System.Web.UI.Adapters.PageAdapter.GetRadioButtonsByGroup(System.String)" /> methods are used by radio button control adapters to reference the other <see cref="T:System.Web.UI.WebControls.RadioButton" /> controls in a radio button group.</para>
</item>
<item>
<para>The <see cref="P:System.Web.UI.Adapters.PageAdapter.ClientState" /> property provides access to the combined control and view states of the <see cref="T:System.Web.UI.Page" /> object through the internal ClientState property of the <see cref="T:System.Web.UI.Page" /> class. </para>
</item>
<item>
<para>The <see cref="M:System.Web.UI.Adapters.PageAdapter.TransformText(System.String)" /> method is used by control adapters to perform device-specific text transformation.</para>
</item>
</list>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Adapts a Web page for a specific browser and provides the base class from which all page adapters inherit, directly or indirectly. </para>
</summary>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected PageAdapter ();" />
<MemberType>Constructor</MemberType>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The .NET Framework constructs this adapter internally when it creates the corresponding <see cref="T:System.Web.UI.Page" /> class or derived class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Web.UI.Adapters.PageAdapter" /> class. </para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CacheVaryByHeaders">
<MemberSignature Language="C#" Value="public virtual System.Collections.Specialized.StringCollection CacheVaryByHeaders { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Collections.Specialized.StringCollection</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Entities on the Web that cache Web pages cache multiple versions, based on the HTTP headers and other factors. For example, a version for each language in which a page is generated is typically cached, based on the Accept-Language HTTP header.</para>
<para>For specific browsers, it might be necessary to vary caching by HTTP headers in addition to the headers that control target-independent caching. For example, it might be necessary to cache different versions of a page for different screen sizes.</para>
<para>The header names returned by the <see cref="P:System.Web.UI.Adapters.PageAdapter.CacheVaryByHeaders" /> property are added to the list of headers on the Vary HTTP header sent to the client browser.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a list of additional HTTP headers by which caching is varied for the Web page to which this derived page adapter is attached.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CacheVaryByParams">
<MemberSignature Language="C#" Value="public virtual System.Collections.Specialized.StringCollection CacheVaryByParams { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Collections.Specialized.StringCollection</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Entities on the Web that cache Web pages cache multiple versions based on, among other factors, the request parameters. For example, a version for each store location within a retail chain for which a page might be generated would typically be cached based on the parameter name (for example, StoreID).</para>
<para>For specific browsers, it might be necessary to vary caching by GET or POST parameters in addition to the parameters that control target-independent caching. For example, it might be necessary to cache different versions of a page for different mobile phone service providers.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a list of additional parameters from HTTP GET and POST requests by which caching is varied for the Web page to which this derived page adapter is attached.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ClientState">
<MemberSignature Language="C#" Value="protected string ClientState { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</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.Adapters.PageAdapter.ClientState" /> property provides access to the internal ClientState property of the <see cref="T:System.Web.UI.Page" /> class.</para>
<para>View state data stored by the <see cref="T:System.Web.UI.PageStatePersister" /> object in the internal ClientState property of <see cref="T:System.Web.UI.Page" /> will always be saved in the hidden field on the Web page.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets an encoded string that contains the view and control states data of the Web page to which this derived page adapter is attached.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="DeterminePostBackMode">
<MemberSignature Language="C#" Value="public virtual System.Collections.Specialized.NameValueCollection DeterminePostBackMode ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Collections.Specialized.NameValueCollection</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.Adapters.PageAdapter.DeterminePostBackMode" /> method returns one of the following collections: </para>
<list type="bullet">
<item>
<para>Form variables if the HTTP data transfer method is POST.</para>
</item>
<item>
<para>Query string variables if the HTTP method is GET.</para>
</item>
</list>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Determines whether the Web page is in postback and returns a name/value collection of the postback variables.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A <see cref="T:System.Collections.Specialized.NameValueCollection" /> of the postback variables, if any; otherwise null. </para>
</returns>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="GetPostBackFormReference">
<MemberSignature Language="C#" Value="protected virtual string GetPostBackFormReference (string formID);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="formID" Type="System.String" />
</Parameters>
<Docs>
<param name="formID">To be added.</param>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.Adapters.PageAdapter.GetPostBackFormReference(System.String)" /> method provides a DHTML reference to the postback form. The code fragment has the following format: </para>
<para>document.forms['<paramref name="formID" />']</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Returns a DHTML code fragment that the client browser can use to reference the form on the page that was posted.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A <see cref="T:System.String" /> with a reference to the form on the page that was posted.</para>
</returns>
</Docs>
</Member>
<Member MemberName="GetRadioButtonsByGroup">
<MemberSignature Language="C#" Value="public virtual System.Collections.ICollection GetRadioButtonsByGroup (string groupName);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Collections.ICollection</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="groupName" Type="System.String" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Radio button control adapters use the <see cref="M:System.Web.UI.Adapters.PageAdapter.GetRadioButtonsByGroup(System.String)" /> and <see cref="M:System.Web.UI.Adapters.PageAdapter.RegisterRadioButton(System.Web.UI.WebControls.RadioButton)" /> methods to reference the other <see cref="T:System.Web.UI.WebControls.RadioButton" /> controls in the group.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves a collection of radio button controls specified by <paramref name="groupName" />.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>An <see cref="T:System.Collections.ICollection" /> of <see cref="T:System.Web.UI.WebControls.RadioButton" /> controls that make up <paramref name="groupName" />.</para>
</returns>
<param name="groupName">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.String" /> that is the name of the <see cref="T:System.Web.UI.WebControls.RadioButton" /> group to retrieve. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="GetStatePersister">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.PageStatePersister GetStatePersister ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.PageStatePersister</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.Page.PageStatePersister" /> property uses the <see cref="M:System.Web.UI.Adapters.PageAdapter.GetStatePersister" /> method to return the object, derived from the <see cref="T:System.Web.UI.PageStatePersister" /> class, that forms and extracts the combined control and view states for the page. If there is no derived page adapter attached to the page, a <see cref="T:System.Web.UI.HiddenFieldPageStatePersister" /> object is used to maintain the state in a hidden field on the page.</para>
<list type="table">
<listheader>
<item>
<term>
<para>Link type</para>
</term>
<description>
<para>Resulting link</para>
</description>
</item>
</listheader>
<item>
<term>
<para>Code Entity Reference,cer</para>
</term>
<description>
<para>
<see cref="M:System.Char.ToString(System.Char)" />
</para>
</description>
</item>
<item>
<term>
<para>Code Entity Reference Qualified, cerq</para>
</term>
<description>
<para>
<see cref="M:System.Char.ToString(System.Char)" />
</para>
</description>
</item>
<item>
<term>
<para>Code Entity Reference Specific,cers</para>
</term>
<description>
<para>
<see cref="M:System.Char.ToString(System.Char)" />
</para>
</description>
</item>
<item>
<term>
<para>Code Entity Reference Qualified Specific, cerqs</para>
</term>
<description>
<para>
<see cref="M:System.Char.ToString(System.Char)" />
</para>
</description>
</item>
</list>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Returns an object that is used by the Web page to maintain the control and view states.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>An object derived from <see cref="T:System.Web.UI.PageStatePersister" /> that supports creating and extracting the combined control and view states for the <see cref="T:System.Web.UI.Page" />.</para>
</returns>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="RegisterRadioButton">
<MemberSignature Language="C#" Value="public virtual void RegisterRadioButton (System.Web.UI.WebControls.RadioButton radioButton);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="radioButton" Type="System.Web.UI.WebControls.RadioButton" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.Web.UI.Adapters.PageAdapter" /> class uses a <see cref="T:System.Collections.Specialized.ListDictionary" /> object to maintain a list of radio button groups. Each element in <see cref="T:System.Collections.Specialized.ListDictionary" /> is a collection of the <see cref="T:System.Web.UI.WebControls.RadioButton" /> controls in a radio button group. The <see cref="M:System.Web.UI.Adapters.PageAdapter.RegisterRadioButton(System.Web.UI.WebControls.RadioButton)" /> method adds a <see cref="T:System.Web.UI.WebControls.RadioButton" /> control to the appropriate collection, creating the collection if it does not already exist, and creating <see cref="T:System.Collections.Specialized.ListDictionary" /> if there are no previously registered <see cref="T:System.Web.UI.WebControls.RadioButton" /> controls.</para>
<para>Radio button control adapters use the <see cref="M:System.Web.UI.Adapters.PageAdapter.RegisterRadioButton(System.Web.UI.WebControls.RadioButton)" /> and <see cref="M:System.Web.UI.Adapters.PageAdapter.GetRadioButtonsByGroup(System.String)" /> methods to reference the other <see cref="T:System.Web.UI.WebControls.RadioButton" /> controls in a radio button group.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Adds a radio button control to the collection for a specified radio button group.</para>
</summary>
<param name="radioButton">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.WebControls.RadioButton" /> to add to the collection. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="RenderBeginHyperlink">
<MemberSignature Language="C#" Value="public virtual void RenderBeginHyperlink (System.Web.UI.HtmlTextWriter w, string targetUrl, bool encodeUrl, string softKeyLabel);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="w" Type="System.Web.UI.HtmlTextWriter" />
<Parameter Name="targetUrl" Type="System.String" />
<Parameter Name="encodeUrl" Type="System.Boolean" />
<Parameter Name="softKeyLabel" Type="System.String" />
</Parameters>
<Docs>
<param name="w">To be added.</param>
<param name="softKeyLabel">To be added.</param>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.Adapters.PageAdapter.RenderBeginHyperlink(System.Web.UI.HtmlTextWriter,System.String,System.Boolean,System.String)" /> method writes an opening hyperlink tag. When <paramref name="writer" /> is <see cref="T:System.Web.UI.HtmlTextWriter" />, this tag has the following format: </para>
<para><a href="<paramref name="targetUrl" />"> </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Renders an opening hyperlink tag that includes the target URL to the response stream.</para>
</summary>
<param name="targetUrl">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> value holding the target URL of the link. </param>
<param name="encodeUrl">
<attribution license="cc4" from="Microsoft" modified="false" />true to use <see cref="M:System.Web.HttpUtility.HtmlAttributeEncode(System.String)" /> to encode the stream output; otherwise, false. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="RenderBeginHyperlink">
<MemberSignature Language="C#" Value="public virtual void RenderBeginHyperlink (System.Web.UI.HtmlTextWriter w, string targetUrl, bool encodeUrl, string softKeyLabel, string accessKey);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="w" Type="System.Web.UI.HtmlTextWriter" />
<Parameter Name="targetUrl" Type="System.String" />
<Parameter Name="encodeUrl" Type="System.Boolean" />
<Parameter Name="softKeyLabel" Type="System.String" />
<Parameter Name="accessKey" Type="System.String" />
</Parameters>
<Docs>
<param name="w">To be added.</param>
<param name="softKeyLabel">To be added.</param>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.Adapters.PageAdapter.RenderBeginHyperlink(System.Web.UI.HtmlTextWriter,System.String,System.Boolean,System.String,System.String)" /> method writes an opening hyperlink tag. When <paramref name="writer" /> is an <see cref="T:System.Web.UI.HtmlTextWriter" /> object, this tag has the following format: </para>
<para><a href="<paramref name="targetUrl" />" accessKey="<paramref name="accessKey" />"> </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Renders an opening hyperlink tag that includes the target URL and an access key to the response stream.</para>
</summary>
<param name="targetUrl">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> value holding the target URL of the link. </param>
<param name="encodeUrl">
<attribution license="cc4" from="Microsoft" modified="false" />true to use <see cref="M:System.Web.HttpUtility.HtmlAttributeEncode(System.String)" /> to encode the stream output; otherwise, false. </param>
<param name="accessKey">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> value to assign to the accessKey attribute of the link to create. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="RenderEndHyperlink">
<MemberSignature Language="C#" Value="public virtual void RenderEndHyperlink (System.Web.UI.HtmlTextWriter w);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="w" Type="System.Web.UI.HtmlTextWriter" />
</Parameters>
<Docs>
<param name="w">To be added.</param>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.Adapters.PageAdapter.RenderEndHyperlink(System.Web.UI.HtmlTextWriter)" /> method writes a closing hyperlink tag. When the text writer is an <see cref="T:System.Web.UI.HtmlTextWriter" /> object, this tag has the following format: </para>
<para></a></para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Renders a closing hyperlink tag to the response stream.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="RenderPostBackEvent">
<MemberSignature Language="C#" Value="public virtual void RenderPostBackEvent (System.Web.UI.HtmlTextWriter w, string target, string argument, string softKeyLabel, string text);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="w" Type="System.Web.UI.HtmlTextWriter" />
<Parameter Name="target" Type="System.String" />
<Parameter Name="argument" Type="System.String" />
<Parameter Name="softKeyLabel" Type="System.String" />
<Parameter Name="text" Type="System.String" />
</Parameters>
<Docs>
<param name="w">To be added.</param>
<param name="softKeyLabel">To be added.</param>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.Adapters.PageAdapter.RenderPostBackEvent(System.Web.UI.HtmlTextWriter,System.String,System.String,System.String,System.String)" /> method writes a postback event as a scriptless hyperlink.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Renders a postback event into the response stream as a hyperlink, including the encoded and possibly encrypted view state, and event target and argument.</para>
</summary>
<param name="target">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> value holding the postback event target name. </param>
<param name="argument">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> value holding the argument to pass to the postback target event. </param>
<param name="text">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> value of the text to display as the link. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="RenderPostBackEvent">
<MemberSignature Language="C#" Value="public virtual void RenderPostBackEvent (System.Web.UI.HtmlTextWriter w, string target, string argument, string softKeyLabel, string text, string postUrl, string accessKey);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="w" Type="System.Web.UI.HtmlTextWriter" />
<Parameter Name="target" Type="System.String" />
<Parameter Name="argument" Type="System.String" />
<Parameter Name="softKeyLabel" Type="System.String" />
<Parameter Name="text" Type="System.String" />
<Parameter Name="postUrl" Type="System.String" />
<Parameter Name="accessKey" Type="System.String" />
</Parameters>
<Docs>
<param name="w">To be added.</param>
<param name="softKeyLabel">To be added.</param>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.Adapters.PageAdapter.RenderPostBackEvent(System.Web.UI.HtmlTextWriter,System.String,System.String,System.String,System.String,System.String,System.String)" /> method writes a postback event as a scriptless hyperlink, including the possibly chunked <see cref="M:System.Web.HttpUtility.UrlEncode(System.String)" /> view state, __EVENTTARGET<paramref name="=target" />, __EVENTARGUMENT<paramref name="=argument" />, __PREVIOUSPAGE=<paramref name="currentFilePath" /> parameters, and an accessKey="<paramref name="accessKey" />" attribute.</para>
<para>View state is encrypted if the enableViewStateMac attribute of the <format type="text/html"><a href="4123bb66-3fe4-4d62-b70e-33758656b458"><pages></a></format> configuration element is set to true.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Renders a postback event into the response stream as a hyperlink, including the encoded and possibly encrypted view state, an event target and argument, a previous-page parameter, and an access key.</para>
</summary>
<param name="target">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> value holding the postback event target name. </param>
<param name="argument">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> value holding the argument to pass to the postback target event. </param>
<param name="text">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> value of the text to display as the link. </param>
<param name="postUrl">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> value holding the URL target page of the postback. </param>
<param name="accessKey">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> value used to assign to the accessKey attribute of the created link. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="RenderPostBackEvent">
<MemberSignature Language="C#" Value="protected void RenderPostBackEvent (System.Web.UI.HtmlTextWriter w, string target, string argument, string softKeyLabel, string text, string postUrl, string accessKey, bool encode);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="w" Type="System.Web.UI.HtmlTextWriter" />
<Parameter Name="target" Type="System.String" />
<Parameter Name="argument" Type="System.String" />
<Parameter Name="softKeyLabel" Type="System.String" />
<Parameter Name="text" Type="System.String" />
<Parameter Name="postUrl" Type="System.String" />
<Parameter Name="accessKey" Type="System.String" />
<Parameter Name="encode" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="w">To be added.</param>
<param name="softKeyLabel">To be added.</param>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.Adapters.PageAdapter.RenderPostBackEvent(System.Web.UI.HtmlTextWriter,System.String,System.String,System.String,System.String,System.String,System.String)" /> method writes a postback event as a scriptless hyperlink, including the possibly chunked <see cref="M:System.Web.HttpUtility.UrlEncode(System.String)" /> view state, __EVENTTARGET=<paramref name="target" />, __EVENTARGUMENT=<paramref name="argument" />, __PREVIOUSPAGE=<paramref name="currentFilePath" /> parameters, and an accessKey="<paramref name="accessKey" />" attribute.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Renders a postback event into the response stream as a hyperlink, including the encoded view state, an event target and argument, a previous-page parameter, and an access key.</para>
</summary>
<param name="target">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> value holding the postback event target name. </param>
<param name="argument">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> value holding the argument to pass to the postback target event. </param>
<param name="text">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> value of the text to display as the link. </param>
<param name="postUrl">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> value holding the URL target page of the postback. </param>
<param name="accessKey">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> value to assign to the accessKey attribute of the created link. </param>
<param name="encode">
<attribution license="cc4" from="Microsoft" modified="false" />true to use &amp; as the URL parameter separator; false to use &. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="TransformText">
<MemberSignature Language="C#" Value="public virtual string TransformText (string text);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="text" Type="System.String" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.Adapters.PageAdapter.TransformText(System.String)" /> method can be used, for example, to transform tab characters (\t) into line breaks (\n).</para>
<para>The <see cref="M:System.Web.UI.Adapters.PageAdapter.TransformText(System.String)" /> base method returns <paramref name="text" /> unchanged.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Transforms text for the target browser.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A <see cref="T:System.String" /> that contains the transformed text.</para>
</returns>
<param name="text">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.String" /> that is the text to transform.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
</Members>
</Type>
|