TableResponse.TableSharedMemory Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the data of the table as a SharedMemory
object.
public Android.OS.SharedMemory? TableSharedMemory { [Android.Runtime.Register("getTableSharedMemory", "()Landroid/os/SharedMemory;", "", ApiSince=34)] get; }
[<get: Android.Runtime.Register("getTableSharedMemory", "()Landroid/os/SharedMemory;", "", ApiSince=34)>]
member this.TableSharedMemory : Android.OS.SharedMemory
Property Value
the table data as a SharedMemory
object, or null
if the data is not
stored in shared memory.
- Attributes
Remarks
Gets the data of the table as a SharedMemory
object.
This data lives in a SharedMemory
instance because of the potentially large amount of data needed to store the table. This optimizes the data communication between the table data source and the receiver.
Java documentation for android.media.tv.TableResponse.getTableSharedMemory()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.