本文整理汇总了C#中Microsoft.CodeAnalysis.Workspace.IsDocumentOpen方法的典型用法代码示例。如果您正苦于以下问题:C# Workspace.IsDocumentOpen方法的具体用法?C# Workspace.IsDocumentOpen怎么用?C# Workspace.IsDocumentOpen使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.CodeAnalysis.Workspace
的用法示例。
在下文中一共展示了Workspace.IsDocumentOpen方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetTextAndVersion
TextAndVersion GetTextAndVersion (Workspace workspace, DocumentId documentId)
{
SourceText text;
if (workspace.IsDocumentOpen (documentId)) {
text = new MonoDevelopSourceText (TextFileProvider.Instance.GetTextEditorData (fileName).CreateDocumentSnapshot ());
}
else {
text = SourceText.From (MonoDevelop.Core.Text.TextFileUtility.GetText (fileName));
}
return TextAndVersion.Create (text, VersionStamp.Create ());
}
示例2: GetTextAndVersion
async Task<TextAndVersion> GetTextAndVersion (Workspace workspace, DocumentId documentId, CancellationToken cancellationToken)
{
if (!File.Exists (fileName)) {
return TextAndVersion.Create (await ((MonoDevelopWorkspace)workspace).GetDocument (documentId).GetTextAsync (cancellationToken), VersionStamp.Create ());
}
SourceText text;
if (workspace.IsDocumentOpen (documentId)) {
text = new MonoDevelopSourceText (TextFileProvider.Instance.GetTextEditorData (fileName).CreateDocumentSnapshot ());
}
else {
text = SourceText.From (TextFileUtility.GetText (fileName));
}
return TextAndVersion.Create (text, VersionStamp.Create ());
}
示例3: OpenDocument
private static Document OpenDocument(Workspace workspace, DocumentId documentId, OptionSet options)
{
options = options ?? workspace.Options;
// Always open the document again, even if the document is already open in the
// workspace. If a document is already open in a preview tab and it is opened again
// in a permanent tab, this allows the document to transition to the new state.
if (workspace.CanOpenDocuments)
{
if (options.GetOption(NavigationOptions.PreferProvisionalTab))
{
using (NewDocumentStateScope ndss = new NewDocumentStateScope(__VSNEWDOCUMENTSTATE.NDS_Provisional, VSConstants.NewDocumentStateReason.Navigation))
{
workspace.OpenDocument(documentId);
}
}
else
{
workspace.OpenDocument(documentId);
}
}
if (!workspace.IsDocumentOpen(documentId))
{
return null;
}
return workspace.CurrentSolution.GetDocument(documentId);
}