class.tmpl.partial 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}}
  2. {{>partials/class.header}}
  3. {{#children}}
  4. {{#overload}}
  5. <a id="{{id}}" data-uid="{{uid}}"></a>
  6. {{/overload}}
  7. <h3 id="{{id}}">{{>partials/classSubtitle}}</h3>
  8. {{#children.0}}
  9. <table class="table table-bordered table-striped table-condensed">
  10. <thead>
  11. <tr>
  12. <th>{{__global.name}}</th>
  13. <th>{{__global.description}}</th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. {{/children.0}}
  18. {{#children}}
  19. <tr>
  20. <td id="{{id}}" data-uid="{{uid}}">
  21. <xref uid="{{uid}}" altProperty="fullName" displayProperty="name"/>
  22. </td>
  23. <td class="markdown level1 summary">{{{summary}}}</td>
  24. </tr>
  25. {{/children}}
  26. {{#children.0}}
  27. </tbody>
  28. </table>
  29. {{/children.0}}
  30. {{/children}}
  31. {{#extensionMethods.0}}
  32. <h3 id="extensionmethods">{{__global.extensionMethods}}</h3>
  33. {{/extensionMethods.0}}
  34. {{#extensionMethods}}
  35. <div>
  36. {{#definition}}
  37. <xref uid="{{definition}}" altProperty="fullName" displayProperty="nameWithType"/>
  38. {{/definition}}
  39. {{^definition}}
  40. <xref uid="{{uid}}" altProperty="fullName" displayProperty="nameWithType"/>
  41. {{/definition}}
  42. </div>
  43. {{/extensionMethods}}
  44. {{#seealso.0}}
  45. <h3 id="seealso">{{__global.seealso}}</h3>
  46. <div class="seealso">
  47. {{/seealso.0}}
  48. {{#seealso}}
  49. {{#isCref}}
  50. <div>{{{type.specName.0.value}}}</div>
  51. {{/isCref}}
  52. {{^isCref}}
  53. <div>{{{url}}}</div>
  54. {{/isCref}}
  55. {{/seealso}}
  56. {{#seealso.0}}
  57. </div>
  58. {{/seealso.0}}