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

20 行
468 B

  1. // Copyright (c) .NET Core Community. All rights reserved.
  2. // Licensed under the MIT License. See License.txt in the project root for license information.
  3. namespace DotNetCore.CAP.Dashboard
  4. {
  5. public class NonEscapedString
  6. {
  7. private readonly string _value;
  8. public NonEscapedString(string value)
  9. {
  10. _value = value;
  11. }
  12. public override string ToString()
  13. {
  14. return _value;
  15. }
  16. }
  17. }