Skip to main content

Definition

Assembly: Mintlify.Core.dll Namespace: Mintlify.Core.Models Inheritance: System.Object

Syntax

Mintlify.Core.Models.SeoConfig

Summary

Represents the SEO (Search Engine Optimization) configuration for the Mintlify documentation site.

Remarks

This configuration controls how search engines index and display the documentation, including meta tags and indexing behavior.

Constructors

.ctor

Syntax

public SeoConfig()

.ctor Inherited

Inherited from object

Syntax

public Object()

Properties

Indexing

Gets or sets which pages should be indexed by search engines.

Syntax

public string Indexing { get; set; }

Property Value

Type: string?

Remarks

Valid values are “navigable” (only pages in navigation) or “all” (all pages). The “navigable” setting indexes only pages that appear in the site navigation, while “all” indexes every page in the documentation. Defaults to “navigable”.

Metatags

Gets or sets custom meta tags to be added to every page.

Syntax

public System.Collections.Generic.Dictionary<string, string> Metatags { get; set; }

Property Value

Type: System.Collections.Generic.Dictionary<string, string>?

Remarks

Each key-value pair represents a meta tag name and its content. These tags are included in the HTML head section of all pages to provide additional information to search engines.

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

ToString Inherited Virtual

Inherited from object

Syntax

public virtual string ToString()

Returns

Type: string?