-
Notifications
You must be signed in to change notification settings - Fork 1
IAirContentProcessor
Viridovics edited this page Sep 2, 2018
·
4 revisions
IAirContentProcessor describes behavior of serialization (for request body)/deserialization (for response content) and content type.
public interface IAirContentProcessor
{
string ContentType { get; } // You can use AirHttp.Protocols.ContentTypes constants for implementation of _ContentType_
T DeserializeObject<T>(string serializedObject);
string SerializeObject<T>(T pocoObject);
}
Features
- Support DataContracts
- Case sensitive for fields naming
Features
- Case insensitive for fields naming
- Warning: There may be naming collisions