選択できるのは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. }