1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {{!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}}
- <h3 id="{{id}}">{{>partials/classSubtitle}}</h3>
- <table class="table table-bordered table-striped table-condensed">
- <thead>
- <tr>
- <th>{{__global.name}}</th>
- <th>{{__global.description}}</th>
- </tr>
- <thead>
- <tbody>
- {{#children}}
- <tr>
- <td id="{{id}}">{{name.0.value}}</td>
- <td>{{{summary}}}</td>
- </tr>
- {{/children}}
- </tbody>
- </table>
- {{/children}}
- {{#seealso.0}}
- <h5 id="{{id}}_seealso">{{__global.seealso}}</h5>
- <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}}
- {{#extensionMethods.0}}
- <h3 id="extensionmethods">{{__global.extensionMethods}}</h3>
- {{/extensionMethods.0}}
- {{#extensionMethods}}
- <div>
- {{#definition}}
- <xref uid="{{definition}}" fullName="{{fullName.0.value}}" name="{{nameWithType.0.value}}"/>
- {{/definition}}
- {{^definition}}
- <xref uid="{{uid}}" fullName="{{fullName.0.value}}" name="{{nameWithType.0.value}}"/>
- {{/definition}}
- </div>
- {{/extensionMethods}}
|