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