ApePackage Class |
Namespace: GroupDocs.Metadata.Formats.Audio
The ApePackage type exposes the following members.
Name | Description | |
---|---|---|
![]() | Abstract |
Gets the abstract link.
|
![]() | Album |
Gets the album.
|
![]() | Artist |
Gets the artist.
|
![]() | Bibliography |
Gets the bibliography.
|
![]() | Comment |
Gets the comment.
|
![]() | Composer |
Gets the composer.
|
![]() | Conductor |
Gets the conductor.
|
![]() | Copyright |
Gets the copyright.
|
![]() | Count |
Gets the number of metadata properties.
(Inherited from MetadataPackage.) |
![]() | DebutAlbum |
Gets the debut album.
|
![]() | File |
Gets the file.
|
![]() | Genre |
Gets the genre.
|
![]() | Isbn |
Gets the ISBN number with check digit. See more: https://en.wikipedia.org/wiki/International_Standard_Book_Number.
|
![]() | Isrc |
Gets the International Standard Recording Number.
|
![]() | Item |
Gets the MetadataProperty with the specified name.
(Inherited from MetadataPackage.) |
![]() | Keys |
Gets a collection of the metadata property names.
(Inherited from MetadataPackage.) |
![]() | KnowPropertyDescriptors | Obsolete.
Gets a collection of descriptors that contain information about properties accessible through the GroupDocs.Metadata search engine.
(Inherited from MetadataPackage.) |
![]() | Language |
Gets the language.
|
![]() | MetadataType |
Gets the metadata type.
(Inherited from MetadataPackage.) |
![]() | PropertyDescriptors |
Gets a collection of descriptors that contain information about properties accessible through the GroupDocs.Metadata search engine.
(Inherited from MetadataPackage.) |
![]() | PublicationRight |
Gets the publication right.
|
![]() | Publisher |
Gets the publisher.
|
![]() | RecordLocation |
Gets the record location.
|
![]() | Subtitle |
Gets the subtitle.
|
![]() | Title |
Gets the title.
|
![]() | Track |
Gets the track number.
|
Name | Description | |
---|---|---|
![]() | AddProperties |
Adds known metadata properties satisfying the specified predicate.
The operation is recursive so it affects all nested packages as well.
(Inherited from MetadataPackage.) |
![]() | Contains |
Determines whether the package contains a metadata property with the specified name.
(Inherited from MetadataPackage.) |
![]() | Equals | (Inherited from Object.) |
![]() | FindProperties |
Finds the metadata properties satisfying the specified predicate.
The search is recursive so it affects all nested packages as well.
(Inherited from MetadataPackage.) |
![]() | GetEnumerator |
Returns an enumerator that iterates through the collection.
(Inherited from MetadataPackage.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | RemoveProperties |
Removes metadata properties satisfying the specified predicate.
(Inherited from MetadataPackage.) |
![]() | Sanitize |
Removes writable metadata properties from the package.
The operation is recursive so it affects all nested packages as well.
(Inherited from MetadataPackage.) |
![]() | SetProperties |
Sets known metadata properties satisfying the specified predicate.
The operation is recursive so it affects all nested packages as well.
This method is a combination of AddProperties(FuncMetadataProperty, Boolean, PropertyValue) and UpdateProperties(FuncMetadataProperty, Boolean, PropertyValue).
If an existing property satisfies the predicate its value is updated.
If there is a known property missing in the package that satisfies the predicate it is added to the package.
(Inherited from MetadataPackage.) |
![]() | ToString | (Inherited from Object.) |
![]() | UpdateProperties |
Updates known metadata properties satisfying the specified predicate.
The operation is recursive so it affects all nested packages as well.
(Inherited from MetadataPackage.) |
using (Metadata metadata = new Metadata(Constants.MP3WithApe)) { var root = metadata.GetRootPackage<MP3RootPackage>(); if (root.ApeV2 != null) { Console.WriteLine(root.ApeV2.Album); Console.WriteLine(root.ApeV2.Title); Console.WriteLine(root.ApeV2.Artist); Console.WriteLine(root.ApeV2.Composer); Console.WriteLine(root.ApeV2.Copyright); Console.WriteLine(root.ApeV2.Genre); Console.WriteLine(root.ApeV2.Language); // ... } }