You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Arxisos edited this page Feb 28, 2012
·
5 revisions
Serialization and deserialization
To skip the serialization of the request DTO, you can add the IRequiresRequestStream interface to directly retrieve the stream without populating the request DTO.
//Request DTOpublicclassHello:IRequiresRequestStream{/// <summary>/// The raw Http Request Input Stream/// </summary>StreamRequestStream{get;set;}}