Method | Description | |
---|---|---|
Create ( ) : IXmpMeta | ||
Parse ( Stream @in ) : IXmpMeta |
Parsing with default options.
|
|
Parse ( Stream @in, |
These functions support parsing serialized RDF into an XMP object, and serailizing an XMP object into RDF. The input for parsing may be any valid Unicode encoding. ISO Latin-1 is also recognized, but its use is strongly discouraged. Serialization is always as UTF-8.
|
|
ParseFromBuffer ( byte buffer ) : IXmpMeta |
Parsing with default options.
|
|
ParseFromBuffer ( byte buffer, |
Creates an
|
|
ParseFromString ( string packet ) : IXmpMeta |
Parsing with default options.
|
|
ParseFromString ( string packet, |
Creates an
|
|
Reset ( ) : void |
Resets the _schema registry to its original state (creates a new one). Be careful this might break all existing XMPMeta-objects and should be used only for testing purpurses.
|
|
Serialize ( IXmpMeta xmp, Stream @out ) : void |
Serializes an
|
|
Serialize ( IXmpMeta xmp, Stream @out, |
Serializes an
|
|
SerializeToBuffer ( IXmpMeta xmp, |
Serializes an
|
|
SerializeToString ( IXmpMeta xmp, |
Serializes an
|
Method | Description | |
---|---|---|
AssertImplementation ( IXmpMeta xmp ) : void | ||
GetVersionInfo ( ) : IXmpVersionInfo |
public static Parse ( Stream @in ) : IXmpMeta | ||
@in | Stream | |
return | IXmpMeta |
public static Parse ( Stream @in, |
||
@in | Stream | |
options | Options controlling the parsing. /// The available options are: ///
|
|
return | IXmpMeta |
public static ParseFromBuffer ( byte buffer ) : IXmpMeta | ||
buffer | byte | a String contain an XMP-file. |
return | IXmpMeta |
public static ParseFromBuffer ( byte buffer, |
||
buffer | byte | a String contain an XMP-file. |
options | Options controlling the parsing. | |
return | IXmpMeta |
public static ParseFromString ( string packet ) : IXmpMeta | ||
packet | string | a String contain an XMP-file. |
return | IXmpMeta |
public static ParseFromString ( string packet, |
||
packet | string | a String contain an XMP-file. |
options | Options controlling the parsing. | |
return | IXmpMeta |
public static Serialize ( IXmpMeta xmp, Stream @out ) : void | ||
xmp | IXmpMeta | a metadata object |
@out | Stream | |
return | void |
public static Serialize ( IXmpMeta xmp, Stream @out, |
||
xmp | IXmpMeta | a metadata object |
@out | Stream | |
options | Options to control the serialization (see |
|
return | void |
public static SerializeToBuffer ( IXmpMeta xmp, |
||
xmp | IXmpMeta | a metadata object |
options | Options to control the serialization (see |
|
return | byte[] |
public static SerializeToString ( IXmpMeta xmp, |
||
xmp | IXmpMeta | a metadata object |
options | Options to control the serialization (see |
|
return | string |