当前位置: 首页>>代码示例>>C#>>正文


C# ITextSnapshot.GetFullSpan方法代码示例

本文整理汇总了C#中ITextSnapshot.GetFullSpan方法的典型用法代码示例。如果您正苦于以下问题:C# ITextSnapshot.GetFullSpan方法的具体用法?C# ITextSnapshot.GetFullSpan怎么用?C# ITextSnapshot.GetFullSpan使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ITextSnapshot的用法示例。


在下文中一共展示了ITextSnapshot.GetFullSpan方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: CreateSnapshot

            private static ITextSnapshot CreateSnapshot(ITextSnapshot editorSnapshot)
            {
                var factory = TextBufferFactory;

                // We might not have a factory if there is no primary workspace (for example, under the unit test harness,
                // or in CodeSense where they are just using the parsers by themselves). In that case, just use the editor
                // snapshot as-is.
                //
                // Creating a buffer off a given snapshot should be cheap, so it should be okay to create a dummy buffer here
                // just to host the snapshot we want.
                var roslynSnapshot = factory != null
                                        ? factory.Clone(editorSnapshot.GetFullSpan()).CurrentSnapshot
                                        : editorSnapshot;

                // put reverse entry that won't hold onto anything
                var weakEditorSnapshot = new WeakReference<ITextSnapshot>(editorSnapshot);
                s_roslynToEditorSnapshotMap.GetValue(roslynSnapshot, _ => weakEditorSnapshot);

                return roslynSnapshot;
            }
开发者ID:Rickinio,项目名称:roslyn,代码行数:20,代码来源:Extensions.TextBufferMapper.cs

示例2: EnqueueParseSnapshotWorkerAsync

            private async Task EnqueueParseSnapshotWorkerAsync(Document document, ITextSnapshot snapshot, CancellationToken cancellationToken)
            {
                // preemptively parse file in background so that when we are called from tagger from UI thread, we have tree ready.
                var syntaxTree = await document.GetSyntaxTreeAsync(cancellationToken).ConfigureAwait(false);

                lock (_gate)
                {
                    _lastParsedSnapshot = snapshot;
                    _lastParsedDocument = document;
                }

                _reportChangeCancellationSource = new CancellationTokenSource();
                _notificationService.RegisterNotification(() =>
                    {
                        _workQueue.AssertIsForeground();
                        ReportChangedSpan(snapshot.GetFullSpan());
                    },
                    ReportChangeDelayInMilliseconds,
                    _listener.BeginAsyncOperation("ReportEntireFileChanged"),
                    _reportChangeCancellationSource.Token);
            }
开发者ID:JackWangCUMT,项目名称:roslyn,代码行数:21,代码来源:SyntacticClassificationTaggerProvider.TagComputer.cs


注:本文中的ITextSnapshot.GetFullSpan方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。