mirror of
https://github.com/readthedocs/sphinx-autoapi
synced 2024-11-08 07:10:31 +00:00
65 lines
866 B
ReStructuredText
65 lines
866 B
ReStructuredText
{{ name.CSharp }}
|
|
{{ underline }}
|
|
|
|
{#
|
|
.. currentmodule:: {{ module }}
|
|
#}
|
|
|
|
Summary
|
|
-------
|
|
|
|
{{ summary }}
|
|
|
|
Inheritance Hierarchy
|
|
---------------------
|
|
|
|
{% for item in inheritance %}
|
|
* {{ item.id }}
|
|
{% endfor %}
|
|
|
|
Syntax
|
|
|
|
.. code-block:: csharp
|
|
|
|
{{ syntax.content.CSharp }}
|
|
|
|
Class Information
|
|
-----------------
|
|
|
|
.. class:: {{ name.CSharp }}
|
|
|
|
{% if ctors %}
|
|
|
|
.. rubric:: Constructors
|
|
|
|
{% for item in ctors %}
|
|
{% include "member.rst" %}
|
|
{%- endfor %}
|
|
{% endif %}
|
|
|
|
|
|
{% block methods %}
|
|
|
|
{% if methods %}
|
|
|
|
.. rubric:: Methods
|
|
|
|
{% for item in methods %}
|
|
{% include "member.rst" %}
|
|
{%- endfor %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block attributes %}
|
|
{% if attributes %}
|
|
|
|
.. rubric:: Attributes
|
|
|
|
{% for item in attributes %}
|
|
{% include "member.rst" %}
|
|
{%- endfor %}
|
|
{% endif %}
|
|
{% endblock %}
|