Org.BouncyCastle.Ocsp.BasicOcspResp.GetTbsResponseData C# (CSharp) 메소드

GetTbsResponseData() 공개 메소드

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