Skip to content

Commit 957edb2

Browse files
Update file(s) "/." from "groupdocs-metadata/Groupdocs.Metadata-References"
1 parent 537a1ce commit 957edb2

726 files changed

Lines changed: 1119 additions & 3827 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

content/sites/groupdocs/metadata/english/net/_index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ version:
3131
| [GroupDocs.Metadata.Formats.Font](./groupdocs.metadata.formats.font) | The namespace contains classes allowing users to work with formats representing scalable computer fonts. |
3232
| [GroupDocs.Metadata.Formats.Gis](./groupdocs.metadata.formats.gis) | |
3333
| [GroupDocs.Metadata.Formats.Image](./groupdocs.metadata.formats.image) | The namespace provides functionality allowing users to read and update metadata stored in different image formats. |
34-
| [GroupDocs.Metadata.Formats.Image.Avif](./groupdocs.metadata.formats.image.avif) | |
3534
| [GroupDocs.Metadata.Formats.Image.Dng](./groupdocs.metadata.formats.image.dng) | |
3635
| [GroupDocs.Metadata.Formats.Image.Svg](./groupdocs.metadata.formats.image.svg) | |
3736
| [GroupDocs.Metadata.Formats.Mpeg](./groupdocs.metadata.formats.mpeg) | The namespace provides functionality allowing users to work with metadata of various MPEG standards. |

content/sites/groupdocs/metadata/english/net/groupdocs.metadata.common/_index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ The namespace contains base classes, utility classes and interfaces used across
1414
| --- | --- |
1515
| [CustomPackage](./custompackage) | Provides a container for metadata properties. |
1616
| [DocumentInfo](./documentinfo) | Provides common information about a loaded document. |
17+
| [FeatureSupport](./featuresupport) | Represents support information for a specific product feature. |
1718
| [FileType](./filetype) | Represents the file type. |
19+
| [FileTypeFeatureSupport](./filetypefeaturesupport) | Represents product feature support information for a specific file extension. |
1820
| [FileTypePackage](./filetypepackage) | Represents a metadata package containing file format information. |
1921
| [Func<TResult>](./func-1) | Encapsulates a method that has no parameters and returns a value of the type specified by the *TResult* parameter. |
2022
| [Func<T,TResult>](./func-2) | Encapsulates a method that has one parameter and returns a value of the type specified by the *TResult* parameter. |
@@ -47,8 +49,11 @@ The namespace contains base classes, utility classes and interfaces used across
4749
| --- | --- |
4850
| [ByteOrder](./byteorder) | Defines various byte orders. |
4951
| [FileFormat](./fileformat) | Represents the recognized format of a loaded file. |
52+
| [FormatFamily](./formatfamily) | Groups file types into families for documentation and feature matrices. |
5053
| [MetadataPropertyType](./metadatapropertytype) | Defines metadata property types. |
5154
| [MetadataType](./metadatatype) | Specifies the type of a metadata package. |
55+
| [ProductFeature](./productfeature) | Specifies product features that can be supported by a file type. |
5256
| [PropertyAccessLevels](./propertyaccesslevels) | Defines access levels for metadata properties. |
57+
| [SupportLevel](./supportlevel) | Specifies the feature support level. |
5358

5459
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.metadata.dll -->
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: FeatureSupport
3+
second_title: GroupDocs.Metadata for .NET API Reference
4+
description: Represents support information for a specific product feature.
5+
type: docs
6+
weight: 40
7+
url: /net/groupdocs.metadata.common/featuresupport/
8+
---
9+
## FeatureSupport class
10+
11+
Represents support information for a specific product feature.
12+
13+
```csharp
14+
public sealed class FeatureSupport
15+
```
16+
17+
## Properties
18+
19+
| Name | Description |
20+
| --- | --- |
21+
| [Feature](../../groupdocs.metadata.common/featuresupport/feature) { get; } | Gets the product feature this entry describes. |
22+
| [Level](../../groupdocs.metadata.common/featuresupport/level) { get; } | Gets the support level for this feature. |
23+
24+
### See Also
25+
26+
* namespace [GroupDocs.Metadata.Common](../../groupdocs.metadata.common)
27+
* assembly [GroupDocs.Metadata](../../)
28+
29+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.metadata.dll -->
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: Feature
3+
second_title: GroupDocs.Metadata for .NET API Reference
4+
description: Gets the product feature this entry describes.
5+
type: docs
6+
weight: 10
7+
url: /net/groupdocs.metadata.common/featuresupport/feature/
8+
---
9+
## FeatureSupport.Feature property
10+
11+
Gets the product feature this entry describes.
12+
13+
```csharp
14+
public ProductFeature Feature { get; }
15+
```
16+
17+
### See Also
18+
19+
* enum [ProductFeature](../../productfeature)
20+
* class [FeatureSupport](../../featuresupport)
21+
* namespace [GroupDocs.Metadata.Common](../../../groupdocs.metadata.common)
22+
* assembly [GroupDocs.Metadata](../../../)
23+
24+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.metadata.dll -->
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: Level
3+
second_title: GroupDocs.Metadata for .NET API Reference
4+
description: Gets the support level for this feature.
5+
type: docs
6+
weight: 20
7+
url: /net/groupdocs.metadata.common/featuresupport/level/
8+
---
9+
## FeatureSupport.Level property
10+
11+
Gets the support level for this feature.
12+
13+
```csharp
14+
public SupportLevel Level { get; }
15+
```
16+
17+
### See Also
18+
19+
* enum [SupportLevel](../../supportlevel)
20+
* class [FeatureSupport](../../featuresupport)
21+
* namespace [GroupDocs.Metadata.Common](../../../groupdocs.metadata.common)
22+
* assembly [GroupDocs.Metadata](../../../)
23+
24+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.metadata.dll -->

content/sites/groupdocs/metadata/english/net/groupdocs.metadata.common/fileformat/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: FileFormat
33
second_title: GroupDocs.Metadata for .NET API Reference
44
description: Represents the recognized format of a loaded file.
55
type: docs
6-
weight: 40
6+
weight: 50
77
url: /net/groupdocs.metadata.common/fileformat/
88
---
99
## FileFormat enumeration

content/sites/groupdocs/metadata/english/net/groupdocs.metadata.common/filetype/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: FileType
33
second_title: GroupDocs.Metadata for .NET API Reference
44
description: Represents the file type.
55
type: docs
6-
weight: 50
6+
weight: 60
77
url: /net/groupdocs.metadata.common/filetype/
88
---
99
## FileType class
@@ -36,6 +36,7 @@ public class FileType
3636
| --- | --- |
3737
| static readonly [ASF](../../groupdocs.metadata.common/filetype/asf) | The Advanced Systems Format (ASF) is a digital multimedia container designed primarily for storing and transmitting media streams. Microsoft Windows Media Video (WMV) is the compressed video format and Microsoft Windows Media Audio (WMA) is the compressed audio format along with additional metadata in the ASF container developed by Microsoft. Learn more about this file format [here](https://wiki.fileformat.com/video/wmv/). |
3838
| static readonly [AVI](../../groupdocs.metadata.common/filetype/avi) | The AVI file format is an Audio Video multimedia container file format that was introduced by Microsoft. Learn more about this file format [here](https://wiki.fileformat.com/video/avi/). |
39+
| static readonly [AVIF](../../groupdocs.metadata.common/filetype/avif) | AV1 Image File Format (AVIF) is an open, royalty-free image file format specification for storing images or image sequences compressed with AV1 in the HEIF container format. Learn more about this file format [here](https://docs.fileformat.com/image/avif/). |
3940
| static readonly [BMP](../../groupdocs.metadata.common/filetype/bmp) | Files having extension .BMP represent Bitmap Image files that are used to store bitmap digital images. These images are independent of graphics adapter and are also called device independent bitmap (DIB) file format. Learn more about this file format [here](https://wiki.fileformat.com/image/bmp/). |
4041
| static readonly [CBRAR](../../groupdocs.metadata.common/filetype/cbrar) | A Comic Book Archive(CBA) file, also known as Comic Book Archive or Comic Book Reader file, is a popular format used to store and distribute digital comic books. It typically contains collection of individual comic book pages or images bundled together in single file for easy organization and reading. [here](https://wiki.fileformat.com/compression/cba/). |
4142
| static readonly [CBSEVEN](../../groupdocs.metadata.common/filetype/cbseven) | A CB7 file refers to Comic Book 7-Zip Archive. It is compressed file format commonly used for storing and distributing comic book collections digitally. CB7 files are created using 7-Zip compression software, which is known for its high compression ratio. [here](https://wiki.fileformat.com/compression/cb7/). |
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: AVIF
3+
second_title: GroupDocs.Metadata for .NET API Reference
4+
description: AV1 Image File Format AVIF is an open royaltyfree image file format specification for storing images or image sequences compressed with AV1 in the HEIF container format. Learn more about this file format herehttps//docs.fileformat.com/image/avif/.
5+
type: docs
6+
weight: 30
7+
url: /net/groupdocs.metadata.common/filetype/avif/
8+
---
9+
## FileType.AVIF field
10+
11+
AV1 Image File Format (AVIF) is an open, royalty-free image file format specification for storing images or image sequences compressed with AV1 in the HEIF container format. Learn more about this file format [here](https://docs.fileformat.com/image/avif/).
12+
13+
```csharp
14+
public static readonly FileType AVIF;
15+
```
16+
17+
### See Also
18+
19+
* class [FileType](../../filetype)
20+
* namespace [GroupDocs.Metadata.Common](../../../groupdocs.metadata.common)
21+
* assembly [GroupDocs.Metadata](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.metadata.dll -->

content/sites/groupdocs/metadata/english/net/groupdocs.metadata.common/filetype/bmp/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: BMP
33
second_title: GroupDocs.Metadata for .NET API Reference
44
description: Files having extension .BMP represent Bitmap Image files that are used to store bitmap digital images. These images are independent of graphics adapter and are also called device independent bitmap DIB file format. Learn more about this file format herehttps//wiki.fileformat.com/image/bmp/.
55
type: docs
6-
weight: 30
6+
weight: 40
77
url: /net/groupdocs.metadata.common/filetype/bmp/
88
---
99
## FileType.BMP field

content/sites/groupdocs/metadata/english/net/groupdocs.metadata.common/filetype/cbrar/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: CBRAR
33
second_title: GroupDocs.Metadata for .NET API Reference
44
description: A Comic Book ArchiveCBA file also known as Comic Book Archive or Comic Book Reader file is a popular format used to store and distribute digital comic books. It typically contains collection of individual comic book pages or images bundled together in single file for easy organization and reading. herehttps//wiki.fileformat.com/compression/cba/.
55
type: docs
6-
weight: 40
6+
weight: 50
77
url: /net/groupdocs.metadata.common/filetype/cbrar/
88
---
99
## FileType.CBRAR field

0 commit comments

Comments
 (0)