> ## Documentation Index
> Fetch the complete documentation index at: https://easyaf.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# XmlMember

> Represents a documented member from XML documentation.

## Definition

**Assembly:** CloudNimble.EasyAF.XmlDocumentation.dll

**Namespace:** CloudNimble.EasyAF.XmlDocumentation

**Inheritance:** System.Object

## Syntax

```csharp theme={"dark"}
CloudNimble.EasyAF.XmlDocumentation.XmlMember
```

## Summary

Represents a documented member from XML documentation.

## Remarks

This class contains all the documentation elements for a single member,
including summary, remarks, parameters, return values, exceptions, and examples.
It provides methods to convert the documentation to various formats.

## Constructors

### <Icon icon="hammer" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> .ctor

Initializes a new instance of the XmlMember class.

#### Syntax

```csharp theme={"dark"}
public XmlMember()
```

### <Icon icon="hammer" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> .ctor

Initializes a new instance of the XmlMember class from an XML element.

#### Syntax

```csharp theme={"dark"}
public XmlMember(System.Xml.Linq.XElement memberElement)
```

#### Parameters

| Name            | Type                       | Description                      |
| --------------- | -------------------------- | -------------------------------- |
| `memberElement` | `System.Xml.Linq.XElement` | The XML member element to parse. |

### <Icon icon="hammer" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> .ctor <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public Object()
```

## Properties

### <Icon icon="tag" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> Examples

Gets the collection of example documentation elements.

#### Syntax

```csharp theme={"dark"}
public System.Collections.Generic.List<CloudNimble.EasyAF.XmlDocumentation.XmlExampleElement> Examples { get; set; }
```

#### Property Value

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

### <Icon icon="tag" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> Exceptions

Gets the collection of exception documentation elements.

#### Syntax

```csharp theme={"dark"}
public System.Collections.Generic.List<CloudNimble.EasyAF.XmlDocumentation.XmlExceptionElement> Exceptions { get; set; }
```

#### Property Value

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

### <Icon icon="tag" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> MemberType

Gets or sets the member type (Type, Method, Property, Field, Event).

#### Syntax

```csharp theme={"dark"}
public CloudNimble.EasyAF.XmlDocumentation.MemberType MemberType { get; set; }
```

#### Property Value

Type: `CloudNimble.EasyAF.XmlDocumentation.MemberType`

### <Icon icon="tag" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> Name

Gets or sets the full member name with prefix (e.g., T:System.String, M:System.String.Length).

#### Syntax

```csharp theme={"dark"}
public string Name { get; set; }
```

#### Property Value

Type: `string`

### <Icon icon="tag" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> Parameters

Gets the collection of parameter documentation elements.

#### Syntax

```csharp theme={"dark"}
public System.Collections.Generic.List<CloudNimble.EasyAF.XmlDocumentation.XmlParameterElement> Parameters { get; set; }
```

#### Property Value

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

### <Icon icon="tag" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> Permissions

Gets the collection of permission documentation elements.

#### Syntax

```csharp theme={"dark"}
public System.Collections.Generic.List<CloudNimble.EasyAF.XmlDocumentation.XmlPermissionElement> Permissions { get; set; }
```

#### Property Value

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

### <Icon icon="tag" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> Remarks

Gets or sets the remarks documentation element.

#### Syntax

```csharp theme={"dark"}
public CloudNimble.EasyAF.XmlDocumentation.XmlRemarksElement Remarks { get; set; }
```

#### Property Value

Type: `CloudNimble.EasyAF.XmlDocumentation.XmlRemarksElement`

### <Icon icon="tag" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> Returns

Gets or sets the returns documentation element.

#### Syntax

```csharp theme={"dark"}
public CloudNimble.EasyAF.XmlDocumentation.XmlReturnsElement Returns { get; set; }
```

#### Property Value

Type: `CloudNimble.EasyAF.XmlDocumentation.XmlReturnsElement`

### <Icon icon="tag" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> SeeAlso

Gets the collection of see also references.

#### Syntax

```csharp theme={"dark"}
public System.Collections.Generic.List<CloudNimble.EasyAF.XmlDocumentation.XmlSeeAlsoElement> SeeAlso { get; set; }
```

#### Property Value

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

### <Icon icon="tag" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> Summary

Gets or sets the summary documentation element.

#### Syntax

```csharp theme={"dark"}
public CloudNimble.EasyAF.XmlDocumentation.XmlSummaryElement Summary { get; set; }
```

#### Property Value

Type: `CloudNimble.EasyAF.XmlDocumentation.XmlSummaryElement`

### <Icon icon="tag" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> TypeParameters

Gets the collection of type parameter documentation elements.

#### Syntax

```csharp theme={"dark"}
public System.Collections.Generic.List<CloudNimble.EasyAF.XmlDocumentation.XmlTypeParameterElement> TypeParameters { get; set; }
```

#### Property Value

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

### <Icon icon="tag" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> Value

Gets or sets the value documentation element (for properties).

#### Syntax

```csharp theme={"dark"}
public CloudNimble.EasyAF.XmlDocumentation.XmlValueElement Value { get; set; }
```

#### Property Value

Type: `CloudNimble.EasyAF.XmlDocumentation.XmlValueElement`

## Methods

### <Icon icon="code-fork" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> Equals <Badge color="gray">Inherited</Badge> <Badge color="orange">Virtual</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public virtual bool Equals(object obj)
```

#### Parameters

| Name  | Type      | Description |
| ----- | --------- | ----------- |
| `obj` | `object?` | -           |

#### Returns

Type: `bool`

### <Icon icon="thumbtack" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> Equals <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public static bool Equals(object objA, object objB)
```

#### Parameters

| Name   | Type      | Description |
| ------ | --------- | ----------- |
| `objA` | `object?` | -           |
| `objB` | `object?` | -           |

#### Returns

Type: `bool`

### <Icon icon="function" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> GetContainingType

Gets the containing type name for members.

#### Syntax

```csharp theme={"dark"}
public string GetContainingType()
```

#### Returns

Type: `string`
The containing type name, or empty string for types.

### <Icon icon="code-fork" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> GetHashCode <Badge color="gray">Inherited</Badge> <Badge color="orange">Virtual</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public virtual int GetHashCode()
```

#### Returns

Type: `int`

### <Icon icon="function" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> GetNamespace

Gets the namespace of the member.

#### Syntax

```csharp theme={"dark"}
public string GetNamespace()
```

#### Returns

Type: `string`
The namespace name.

### <Icon icon="function" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> GetSimpleName

Gets the simple name of the member without prefix and namespace.

#### Syntax

```csharp theme={"dark"}
public string GetSimpleName()
```

#### Returns

Type: `string`
The simple member name.

### <Icon icon="function" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> GetType <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public System.Type GetType()
```

#### Returns

Type: `System.Type`

### <Icon icon="function" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> MemberwiseClone <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
protected internal object MemberwiseClone()
```

#### Returns

Type: `object`

### <Icon icon="thumbtack" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> ReferenceEquals <Badge color="gray">Inherited</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public static bool ReferenceEquals(object objA, object objB)
```

#### Parameters

| Name   | Type      | Description |
| ------ | --------- | ----------- |
| `objA` | `object?` | -           |
| `objB` | `object?` | -           |

#### Returns

Type: `bool`

### <Icon icon="code-fork" iconType="duotone" color="#E0EC32" size={24} className="mr-2" /> ToString <Badge color="gray">Inherited</Badge> <Badge color="orange">Virtual</Badge>

<Note>Inherited from `object`</Note>

#### Syntax

```csharp theme={"dark"}
public virtual string ToString()
```

#### Returns

Type: `string?`
