Org.BouncyCastle.Ocsp.BasicOcspResp.GetTbsResponseData C# (CSharp) Method

GetTbsResponseData() public method

In the event of an encoding error.
public GetTbsResponseData ( ) : byte[]
return byte[]
		public byte[] GetTbsResponseData()
		{
			try
			{
				return data.GetDerEncoded();
			}
			catch (IOException e)
			{
				throw new OcspException("problem encoding tbsResponseData", e);
			}
		}