See Also: BackupDataInputStream Members
Provides an Java.IO.InputStream-like interface for accessing an entity's data during a restore operation. Used by Android.App.Backup.IBackupHelper classes within the Android.App.Backup.BackupAgentHelper mechanism.
When IBackupHelper.RestoreEntity(BackupDataInputStream) is called, the current entity's header has already been read from the underlying Android.App.Backup.BackupDataInput. The entity's key string and total data size are available through this class's BackupDataInputStream.Key and BackupDataInputStream.Size methods, respectively.
Note: The caller should take care not to seek or close the underlying data source, nor read more than BackupDataInputStream.Size bytes from the stream.