In This Article

IDocumentationCommentAutoCompleter Interface

Provides the base requirements for a class that can auto-complete .NET language documentation comments when appropriate.

public interface IDocumentationCommentAutoCompleter

Remarks

Instances of this object can be registered with an ISyntaxLanguage using the RegisterService(object, object) method. Once an instance is registered with the language for the IDocumentationCommentAutoCompleter interface type, its features can be used by the language.

Properties

IsEndTagCompletionEnabled

Indicates whether documentation comment end tag completion is enabled.

bool IsEndTagCompletionEnabled { get; }

Property Value

bool

See Also

IsNewLineGenerationEnabled

Indicates whether documentation comment delimiter auto-generation is enabled when pressing Enter while in a documentation comment.

bool IsNewLineGenerationEnabled { get; }

Property Value

bool

See Also

IsStubGenerationEnabled

Indicates whether stub documentation comment auto-generation is enabled when starting to type new documentation comments.

bool IsStubGenerationEnabled { get; }

Property Value

bool

See Also

Extension Methods

See Also