Méthode | Description | |
---|---|---|
DataFromBytes ( byte bytes ) : |
Creates and returns a data object containing a given number of bytes copied from a given buffer. Original signature is '+ (id)dataWithBytes:(const void *)bytes length:(NSUInteger)length' Available in OS X v10.0 and later.
|
|
DataFromBytes ( byte bytes, |
Creates and returns a data object containing a given number of bytes copied from a given buffer. Original signature is '+ (id)dataWithBytes:(const void *)bytes length:(NSUInteger)length' Available in OS X v10.0 and later.
|
|
DataFromResource ( |
Create a NSData from a manifest resource stream.
|
|
DataFromStream ( Stream stream ) : |
Create a NSData from a stream.
|
|
DecryptData ( |
Decrypts the given data by using the ArtworkEncrypter tool.
|
|
GetBuffer ( ) : byte[] |
Gets a managed byte buffer from this instance.
|
|
NSData ( byte bytes ) : System |
Initializes a new instance of the NSData class.
|
|
NSData ( byte bytes, |
Initializes a new instance of the NSData class.
|
|
ToString ( ) : String |
Returns a System.String that represents this instance.
|
public static DataFromBytes ( byte bytes ) : |
||
bytes | byte | A buffer containing data for the new object. |
Résultat |
public static DataFromBytes ( byte bytes, |
||
bytes | byte | A buffer containing data for the new object. |
length | The number of bytes to copy from bytes. This value must not exceed the length of bytes. | |
Résultat |
public static DataFromResource ( |
||
type | The type whose assembly contains the manifest resource. | |
resourceName | String | Name of the resource. |
Résultat |
public static DataFromStream ( Stream stream ) : |
||
stream | Stream | The stream. |
Résultat |
public static DecryptData ( |
||
encryptedData | The encrypted artwork data. | |
encryptionSeed | The encryption seed to use. | |
Résultat |
public NSData ( byte bytes, |
||
bytes | byte | The bytes. |
length | The length. | |
Résultat | System |