2 implementations of TryDo
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
EndConstruct\CSharpEndConstructGenerationService.cs (1)
26
public bool
TryDo
(
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures (1)
EndConstructGeneration\VisualBasicEndConstructGenerationService.vb (1)
483
Public Function
TryDo
(textView As ITextView, subjectBuffer As ITextBuffer, typedChar As Char, cancellationToken As CancellationToken) As Boolean Implements IEndConstructGenerationService.TryDo
4 references to TryDo
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures (4)
EndConstructGeneration\EndConstructCommandHandler.vb (2)
83
endConstructService.
TryDo
(args.TextView, args.SubjectBuffer, args.TypedChar, CancellationToken.None)
117
Dim result = endConstructService.
TryDo
(textView, subjectBuffer, vbLf(0), CancellationToken.None)
EndConstructGeneration\VisualBasicEndConstructGenerationService.vb (1)
483
Public Function TryDo(textView As ITextView, subjectBuffer As ITextBuffer, typedChar As Char, cancellationToken As CancellationToken) As Boolean Implements IEndConstructGenerationService.
TryDo
Utilities\CommandHandlers\AbstractImplementAbstractClassOrInterfaceCommandHandler.vb (1)
107
Return endConstructGenerationService.
TryDo
(args.TextView, args.SubjectBuffer, vbLf(0), cancellationToken)