Org.BouncyCastle.Bcpg.OpenPgp.PgpObjectFactory.AllPgpObjects C# (CSharp) Method

AllPgpObjects() public method

Return all available objects in a list.
public AllPgpObjects ( ) : IList
return IList
		public IList AllPgpObjects()
		{
			ArrayList result = new ArrayList();
			PgpObject pgpObject;
			while ((pgpObject = NextPgpObject()) != null)
			{
				result.Add(pgpObject);
			}
			return result;
		}
	}