sphinx-autoapi/autoapi/templates/dotnet/class.rst

68 lines
896 B
ReStructuredText
Raw Normal View History

2015-03-27 19:50:56 +00:00
{{ 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
-----------------
2015-04-07 20:35:50 +00:00
.. dn:class:: {{ qualifiedName.CSharp }}
2015-03-27 19:50:56 +00:00
{% if ctors %}
2015-04-07 20:35:50 +00:00
{% for ctor in ctors %}
2015-03-27 19:50:56 +00:00
2015-04-07 20:35:50 +00:00
{% macro render() %}{{ ctor.render() }}{% endmacro %}
{{ render()|indent(3) }}
2015-03-27 19:50:56 +00:00
{%- endfor %}
2015-04-07 20:35:50 +00:00
{% endif %}
2015-03-27 19:50:56 +00:00
{% if methods %}
2015-04-07 20:35:50 +00:00
{% for method in methods %}
2015-03-27 19:50:56 +00:00
2015-04-07 20:35:50 +00:00
{% macro render() %}{{ method.render() }}{% endmacro %}
{{ render()|indent(3) }}
2015-03-27 19:50:56 +00:00
{%- endfor %}
2015-04-07 20:35:50 +00:00
{% endif %}
2015-03-27 19:50:56 +00:00
2015-04-07 20:35:50 +00:00
{% if methods %}
{% for method in attributes %}
2015-03-27 19:50:56 +00:00
2015-04-07 20:35:50 +00:00
{% macro render() %}{{ method.render() }}{% endmacro %}
{{ render()|indent(3) }}
2015-03-27 19:50:56 +00:00
{%- endfor %}
2015-04-07 20:35:50 +00:00
2015-03-27 19:50:56 +00:00
{% endif %}
2015-04-07 20:35:50 +00:00