Microsoft.R.Editor.Navigation.Peek.InternalFunctionPeekItem.InternalFunctionPeekItem C# (CSharp) Method

InternalFunctionPeekItem() public method

public InternalFunctionPeekItem ( string sourceFileName, Span sourceSpan, string functionName, IPeekResultFactory peekResultFactory, ICoreShell shell ) : Microsoft.Common.Core.Shell
sourceFileName string
sourceSpan Span
functionName string
peekResultFactory IPeekResultFactory
shell ICoreShell
return Microsoft.Common.Core.Shell
        public InternalFunctionPeekItem(string sourceFileName, Span sourceSpan, string functionName, IPeekResultFactory peekResultFactory, ICoreShell shell) :
            base(functionName, peekResultFactory, shell) {
            // Create source right away so it can start asynchronous function fetching
            // so by the time GetOrCreateResultSource is called the task may be already underway.
            _source = new InternalFunctionPeekResultSource(sourceFileName, sourceSpan, functionName, this, shell);
        }