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