Interface for unmarshallers which unmarshall service responses.
            The Unmarshallers are stateless, and only encode the rules for what data 
            in the XML stream goes into what members of an object. 
            
 Declaration Syntax
 Declaration Syntax| C# | 
public interface IResponseUnmarshaller<T, R> : IUnmarshaller<T, R>
 Generic Template Parameters
 Generic Template Parameters- T
- The type of object the unmarshaller returns
- R
- The type of the XML unmashaller context, which contains the state of parsing the XML stream. Uaually an instance of Amazon.Runtime.Internal.Transform.UnmarshallerContext.
 Members
 Members| All Members | Methods | ||||
| Icon | Member | Description | 
|---|---|---|
|  | Unmarshall(R) | 
            Given the current position in the XML stream, extract a T.
            (Inherited from IUnmarshaller<(Of <(<'T, R>)>)>.) | 
|  | UnmarshallException(R, Exception, HttpStatusCode) | 
            Extracts an exeption with data from an ErrorResponse.
             |