NonBlockingCompletionOption Class

Definition

The option definition that determines whether editor uses non blocking completion mode, where editor does not wait for completion items to arrive when user presses a commit character. This option is not exposed to the users. It is controllable by laguage services.

public ref class NonBlockingCompletionOption sealed : Microsoft::VisualStudio::Text::Editor::EditorOptionDefinition<bool>
[Microsoft.VisualStudio.Utilities.Name("NonBlockingCompletion")]
[System.ComponentModel.Composition.Export(typeof(Microsoft.VisualStudio.Text.Editor.EditorOptionDefinition))]
public sealed class NonBlockingCompletionOption : Microsoft.VisualStudio.Text.Editor.EditorOptionDefinition<bool>
[<Microsoft.VisualStudio.Utilities.Name("NonBlockingCompletion")>]
[<System.ComponentModel.Composition.Export(typeof(Microsoft.VisualStudio.Text.Editor.EditorOptionDefinition))>]
type NonBlockingCompletionOption = class
    inherit EditorOptionDefinition<bool>
Public NotInheritable Class NonBlockingCompletionOption
Inherits EditorOptionDefinition(Of Boolean)
Inheritance
Attributes

Constructors

NonBlockingCompletionOption()

Properties

Default
DefaultValue

Gets the default value of the option.

(Inherited from EditorOptionDefinition<T>)
Key
Name

Gets the name of the option.

(Inherited from EditorOptionDefinition<T>)
ValueType

Gets the actual type of the option.

(Inherited from EditorOptionDefinition<T>)

Methods

Equals(Object)

Determines whether two EditorOptionDefinition objects are the same.

(Inherited from EditorOptionDefinition)
GetHashCode()

Gets the hash code of this type.

(Inherited from EditorOptionDefinition)
IsApplicableToScope(IPropertyOwner)

Determines whether this option is applicable for the given scope (for example, a text buffer). The default implementation returns true. An option, by default, is applicable to any scope.

(Inherited from EditorOptionDefinition)
IsValid(Object)

Determines whether the proposed value is valid.

(Inherited from EditorOptionDefinition<T>)
IsValid(T)

Determines whether the proposed value is valid.

(Inherited from EditorOptionDefinition<T>)

Applies to