MediaCas.ProcessEmm Method
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.
Overloads
ProcessEmm(Byte[]) |
Send a received EMM packet to the CA system. |
ProcessEmm(Byte[], Int32, Int32) |
Send a received EMM packet to the CA system. |
ProcessEmm(Byte[])
Send a received EMM packet to the CA system.
[Android.Runtime.Register("processEmm", "([B)V", "", ApiSince=26)]
public void ProcessEmm (byte[] data);
[<Android.Runtime.Register("processEmm", "([B)V", "", ApiSince=26)>]
member this.ProcessEmm : byte[] -> unit
Parameters
- data
- Byte[]
byte array of the EMM data.
- Attributes
Remarks
Send a received EMM packet to the CA system. This is similar to #processEmm(byte[], int, int)
except that the entire byte array is sent.
Java documentation for android.media.MediaCas.processEmm(byte[])
.
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.
Applies to
ProcessEmm(Byte[], Int32, Int32)
Send a received EMM packet to the CA system.
[Android.Runtime.Register("processEmm", "([BII)V", "", ApiSince=26)]
public void ProcessEmm (byte[] data, int offset, int length);
[<Android.Runtime.Register("processEmm", "([BII)V", "", ApiSince=26)>]
member this.ProcessEmm : byte[] * int * int -> unit
Parameters
- data
- Byte[]
byte array of the EMM data.
- offset
- Int32
position within data where the EMM data begins.
- length
- Int32
length of the data (starting from offset).
- Attributes
Remarks
Send a received EMM packet to the CA system.
Java documentation for android.media.MediaCas.processEmm(byte[], int, int)
.
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.