Aliyun.Acs.Core.Transform.AcsErrorUnmarshaller.Unmarshall C# (CSharp) Метод

Unmarshall() публичный статический Метод

public static Unmarshall ( UnmarshallerContext context ) : AcsError
context UnmarshallerContext
Результат AcsError
        public static AcsError Unmarshall(UnmarshallerContext context)
        {
            AcsError error = new AcsError();
            error.HttpResponse = context.HttpResponse;
            Dictionary<String, String> map = context.ResponseDictionary;
            error.RequestId = context.StringValue("Error.RequestId");
            error.ErrorCode = context.StringValue("Error.Code");
            error.ErrorMessage = context.StringValue("Error.Message");

            return error;
        }
AcsErrorUnmarshaller