| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- {{!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}}
- <div class="xk-{{id}}-wrapper">
- <h2 id="{{id}}">{{>partials/classSubtitle}}</h2>
- <table class="table table-bordered table-striped table-condensed">
- <thead>
- <tr>
- <th colspan="2">{{__global.name}}</th>
- <th>{{__global.description}}</th>
- </tr>
- </thead>
- <tbody>
- {{#children}}
- <tr>
- <td class="xk-icon-column">
- <span class="xk-{{type}}-icon"></span>
- </td>
- <td><a href="#{{id}}">{{name.0.value}}</a></td>
- <td>{{{summary}}}</td>
- </tr>
- {{/children}}
- </tbody>
- </table>
- {{#children}}
- {{^_disableContribution}}
- {{#sourceurl}}
- <span class="small pull-right mobile-hide">
- <a href="{{sourceurl}}">{{__global.viewSource}}</a>
- </span>{{/sourceurl}}
- {{/_disableContribution}}
- <h3 id="{{id}}" data-uid="{{uid}}" class="xk-bordered-title">{{name.0.value}}</h3>
- <div class="markdown level1 summary">{{{summary}}}</div>
- <div class="markdown level1 conceptual">{{{conceptual}}}</div>
- {{#syntax}}
- <div class="codewrapper">
- <pre><code class="lang-{{_lang}} hljs">{{syntax.content.0.value}}</code></pre>
- </div>
- <div class="xk-{{type}}">
- {{#fieldValue}}
- <div class="xk-fieldValue">
- <i>Type: </i>{{{type.specName.0.value}}}
- <p>{{{description}}}</p>
- </div>
- {{/fieldValue}}
- {{#propertyValue}}
- <div class="xk-propertyValue">
- <i>Type: </i>{{{type.specName.0.value}}}
- <p>{{{description}}}</p>
- </div>
- {{/propertyValue}}
- </div>
- {{#remarks}}
- <div class="markdown level1 remarks">{{{remarks}}}</div>
- {{/remarks}}
- {{#parameters.0}}
- <h4 class="parameters">{{__global.parameters}}</h4>
- <table class="table table-bordered table-striped table-condensed">
- <thead>
- <tr>
- <th>{{__global.type}}</th>
- <th>{{__global.name}}</th>
- <th>{{__global.description}}</th>
- </tr>
- </thead>
- <tbody>
- {{/parameters.0}}
- {{#parameters}}
- <tr>
- <td>{{{type.specName.0.value}}}</td>
- <td><em>{{{id}}}</em></td>
- <td>{{{description}}}</td>
- </tr>
- {{/parameters}}
- {{#parameters.0}}
- </tbody>
- </table>
- {{/parameters.0}}
- {{#syntax.return}}
- <h4 class="returns">{{__global.returns}}</h4>
- <div class="xk-returns">
- <i>Type: </i>{{{type.specName.0.value}}}
- <p>{{{description}}}</p>
- </div>
- {{/syntax.return}}
- {{#syntax.typeParameters.0}}
- <h4 class="typeParameters">{{__global.typeParameters}}</h4>
- <table class="table table-bordered table-striped table-condensed">
- <thead>
- <tr>
- <th>{{__global.name}}</th>
- <th>{{__global.description}}</th>
- </tr>
- </thead>
- <tbody>
- {{/syntax.typeParameters.0}}
- {{#syntax.typeParameters}}
- <tr>
- <td><em>{{{id}}}</em></td>
- <td>{{{description}}}</td>
- </tr>
- {{/syntax.typeParameters}}
- {{#syntax.typeParameters.0}}
- </tbody>
- </table>
- {{/syntax.typeParameters.0}}
- {{#eventType}}
- <h5 class="eventType xk-hidden-table">{{__global.eventType}}</h5>
- <table class="table table-bordered table-striped table-condensed xk-hidden-table">
- <thead>
- <tr>
- <th colspan="2">{{__global.type}}</th>
- <th>{{__global.description}}</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td class="xk-icon-column">
- <span class="xk-events-icon"></span>
- </td>
- <td>{{{type.specName.0.value}}}</td>
- <td>{{{description}}}</td>
- </tr>
- </tbody>
- </table>
- {{/eventType}}
- {{/syntax}}
- {{#exceptions.0}}
- <h4 class="exceptions">{{__global.exceptions}}</h4>
- <table class="table table-bordered table-striped table-condensed">
- <thead>
- <tr>
- <th>{{__global.type}}</th>
- <th>{{__global.condition}}</th>
- </tr>
- </thead>
- <tbody>
- {{/exceptions.0}}
- {{#exceptions}}
- <tr>
- <td>{{{type.specName.0.value}}}</td>
- <td>{{{description}}}</td>
- </tr>
- {{/exceptions}}
- {{#exceptions.0}}
- </tbody>
- </table>
- {{/exceptions.0}}
- {{/children}}
- </div>
- {{/children}}
|