12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using Microsoft.AspNetCore.Mvc;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net;
- using System.Net.Http;
- using System.Text;
- using System.Threading;
- using System.Threading.Tasks;
- namespace Edge.Core.Parser.HttpMessageParser
- {
- public abstract class BaseHttpMessage<T> : MessageBase
- {
- public Guid Id { get; private set; }
- public Controller ApiController { get; protected set; }
- public T Content { get; set; }
-
-
- public BaseHttpMessage(Guid id)
- {
- this.Id = id;
- }
- public override string ToLogString()
- {
- return Content?.ToString() ?? "";
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
- }
|