/// <summary> /// Parses the Get Response from the stream /// </summary> /// <param name="dataStream">The stream to parse the Get Response from</param> // Revision History // MM/DD/YY who Version Issue# Description // -------- --- ------- ------ --------------------------------------- // 02/04/12 RCG 2.70.63 N/A Created public override void Parse(Stream dataStream) { base.Parse(dataStream); m_Result = new DataBlockResponse(); m_Result.Parse(dataStream); }
/// <summary> /// Constructor /// </summary> // Revision History // MM/DD/YY who Version Issue# Description // -------- --- ------- ------ --------------------------------------- // 02/04/12 RCG 2.70.63 N/A Created public GetResponseWithDatablock() { m_Result = new DataBlockResponse(); }