您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

IModelDocumentationProvider.cs 262B

123456789101112
  1. using System;
  2. using System.Reflection;
  3. namespace CacheControl_test.Areas.HelpPage.ModelDescriptions
  4. {
  5. public interface IModelDocumentationProvider
  6. {
  7. string GetDocumentation(MemberInfo member);
  8. string GetDocumentation(Type type);
  9. }
  10. }