DrmConvertedStatus Constructors
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
DrmConvertedStatus(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
DrmConvertedStatus(DrmConvertedStatusCode, Byte[], Int32) |
Creates a |
DrmConvertedStatus(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected DrmConvertedStatus (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Drm.DrmConvertedStatus : nativeint * Android.Runtime.JniHandleOwnership -> Android.Drm.DrmConvertedStatus
Parameters
- transfer
- JniHandleOwnership
A JniHandleOwnershipindicating how to handle javaReference
Remarks
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
DrmConvertedStatus(DrmConvertedStatusCode, Byte[], Int32)
Creates a DrmConvertedStatus
object with the specified parameters.
[Android.Runtime.Register(".ctor", "(I[BI)V", "")]
public DrmConvertedStatus (Android.Drm.DrmConvertedStatusCode statusCode, byte[]? convertedData, int offset);
[<Android.Runtime.Register(".ctor", "(I[BI)V", "")>]
new Android.Drm.DrmConvertedStatus : Android.Drm.DrmConvertedStatusCode * byte[] * int -> Android.Drm.DrmConvertedStatus
Parameters
- statusCode
- DrmConvertedStatusCode
Conversion status. Must be one of the status code constants defined above.
- convertedData
- Byte[]
Converted data. It can be null.
- offset
- Int32
Offset value for appending the header and body signature.
- Attributes
Remarks
Creates a DrmConvertedStatus
object with the specified parameters.
Java documentation for android.drm.DrmConvertedStatus.DrmConvertedStatus(int, byte[], 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.