1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}}
- {{>partials/class.header}}
- {{#children}}
- {{#overload}}
- <a id="{{id}}" data-uid="{{uid}}"></a>
- {{/overload}}
- <h3 id="{{id}}">{{>partials/classSubtitle}}</h3>
- {{#children.0}}
- <table class="table table-bordered table-striped table-condensed">
- <thead>
- <tr>
- <th>{{__global.name}}</th>
- <th>{{__global.description}}</th>
- </tr>
- </thead>
- <tbody>
- {{/children.0}}
- {{#children}}
- <tr>
- <td id="{{id}}" data-uid="{{uid}}">
- <xref uid="{{uid}}" altProperty="fullName" displayProperty="name"/>
- </td>
- <td class="markdown level1 summary">{{{summary}}}</td>
- </tr>
- {{/children}}
- {{#children.0}}
- </tbody>
- </table>
- {{/children.0}}
- {{/children}}
- {{#extensionMethods.0}}
- <h3 id="extensionmethods">{{__global.extensionMethods}}</h3>
- {{/extensionMethods.0}}
- {{#extensionMethods}}
- <div>
- {{#definition}}
- <xref uid="{{definition}}" altProperty="fullName" displayProperty="nameWithType"/>
- {{/definition}}
- {{^definition}}
- <xref uid="{{uid}}" altProperty="fullName" displayProperty="nameWithType"/>
- {{/definition}}
- </div>
- {{/extensionMethods}}
- {{#seealso.0}}
- <h3 id="seealso">{{__global.seealso}}</h3>
- <div class="seealso">
- {{/seealso.0}}
- {{#seealso}}
- {{#isCref}}
- <div>{{{type.specName.0.value}}}</div>
- {{/isCref}}
- {{^isCref}}
- <div>{{{url}}}</div>
- {{/isCref}}
- {{/seealso}}
- {{#seealso.0}}
- </div>
- {{/seealso.0}}
|