Skip to main content

Definition

Assembly: CloudNimble.EasyAF.XmlDocumentation.dll Namespace: CloudNimble.EasyAF.XmlDocumentation Inheritance: System.Object

Syntax

CloudNimble.EasyAF.XmlDocumentation.XmlDocumentationElement

Summary

Represents a base XML documentation element with common properties.

Remarks

This abstract class provides the foundation for all XML documentation elements, including summary, remarks, parameters, returns, and other documentation tags. It handles parsing of XML content and preserves the original structure for conversion to MDX format.

Constructors

.ctor Inherited

Inherited from object

Syntax

public Object()

Properties

InnerElements

Gets or sets the inner XML elements for nested content.

Syntax

public System.Collections.Generic.List<CloudNimble.EasyAF.XmlDocumentation.XmlDocumentationElement> InnerElements { get; set; }

Property Value

Type: System.Collections.Generic.List<CloudNimble.EasyAF.XmlDocumentation.XmlDocumentationElement>

RawXml

Gets or sets the raw XML content of the element.

Syntax

public string RawXml { get; set; }

Property Value

Type: string

Text

Gets or sets the parsed text content of the element.

Syntax

public string Text { get; set; }

Property Value

Type: string

Methods

Equals Inherited Virtual

Inherited from object

Syntax

public virtual bool Equals(object obj)

Parameters

NameTypeDescription
objobject?-

Returns

Type: bool

Equals Inherited

Inherited from object

Syntax

public static bool Equals(object objA, object objB)

Parameters

NameTypeDescription
objAobject?-
objBobject?-

Returns

Type: bool

GetHashCode Inherited Virtual

Inherited from object

Syntax

public virtual int GetHashCode()

Returns

Type: int

GetType Inherited

Inherited from object

Syntax

public System.Type GetType()

Returns

Type: System.Type

MemberwiseClone Inherited

Inherited from object

Syntax

protected internal object MemberwiseClone()

Returns

Type: object

ReferenceEquals Inherited

Inherited from object

Syntax

public static bool ReferenceEquals(object objA, object objB)

Parameters

NameTypeDescription
objAobject?-
objBobject?-

Returns

Type: bool

ToMdx Abstract

Converts this element to MDX format.

Syntax

public abstract string ToMdx()

Returns

Type: string The MDX representation of this element.

ToString Inherited Virtual

Inherited from object

Syntax

public virtual string ToString()

Returns

Type: string?