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


C# IPsiSourceFile.IsValid方法代码示例

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


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

示例1: IsSupported

        protected static bool IsSupported(IPsiSourceFile sourceFile)
        {
            if (sourceFile == null || !sourceFile.IsValid())
                return false;

            return sourceFile.IsLanguageSupported<AngularJsLanguage>();
        }
开发者ID:redoz,项目名称:resharper-angularjs,代码行数:7,代码来源:AngularJsDaemonStageBase.cs

示例2: IsSupported

        protected override bool IsSupported(IPsiSourceFile sourceFile)
        {
            if (sourceFile == null || !sourceFile.IsValid())
                return false;

            return sourceFile.IsLanguageSupported<CSharpLanguage>();
        }
开发者ID:JetBrains,项目名称:resharper-unity,代码行数:7,代码来源:UnityColorHighlighterProcess.cs

示例3: IsSupported

        protected bool IsSupported(IPsiSourceFile sourceFile)
        {
            if (sourceFile == null || !sourceFile.IsValid())
            {
                return false;
            }

            INTriplesFile file = GetNTriplesFile(sourceFile);
            return file != null && file.Language.Is<NTriplesLanguage>();
        }
开发者ID:xsburg,项目名称:ReSharper.NTriples,代码行数:10,代码来源:NTriplesDaemonStageBase.cs

示例4: IsSupported

 private bool IsSupported(IPsiSourceFile sourceFile)
 {
     if (sourceFile == null || !sourceFile.IsValid())
     {
         return false;
     }
     IPsiServices psiServices = sourceFile.GetPsiServices();
     IFile psiFile = psiServices.Files.GetDominantPsiFile<CSharpLanguage>(sourceFile);
     return psiFile != null && psiFile.Language.Is<CSharpLanguage>();
 }
开发者ID:mtashkinov,项目名称:YaccConstructor,代码行数:10,代码来源:HighlightingStage.cs

示例5: IsSupported

    protected bool IsSupported(IPsiSourceFile sourceFile)
    {
      if (sourceFile == null || !sourceFile.IsValid())
      {
        return false;
      }

      IPsiFile psiFile = GetPsiFile(sourceFile);
      return psiFile != null && psiFile.Language.Is<PsiLanguage>();
    }
开发者ID:Adam-Fogle,项目名称:agentralphplugin,代码行数:10,代码来源:PsiDaemonStageBase.cs

示例6: IsSourceFileAvailable

 protected virtual bool IsSourceFileAvailable(IPsiSourceFile sourceFile)
 {
     return sourceFile.IsValid();
 }
开发者ID:xsburg,项目名称:ReSharper.NTriples,代码行数:4,代码来源:NTriplesGotoFileMemberProvider.cs


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