Skip to content

Commit b80f40e

Browse files
Update file(s) "/." from "groupdocs-metadata/Groupdocs.Metadata-References"
1 parent a91a0d4 commit b80f40e

384 files changed

Lines changed: 693 additions & 402 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/groupdocs.metadata.formats.email/_index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ The namespace contains classes representing saved email messages and their parts
1212

1313
| Class | Description |
1414
| --- | --- |
15+
| [EmailAttachmentPackage](./emailattachmentpackage) | Represents a metadata package containing email attachment name. |
1516
| [EmailHeaderPackage](./emailheaderpackage) | Represents a metadata package containing email message headers. |
1617
| [EmailPackage](./emailpackage) | Represents email message metadata. |
1718
| [EmailRootPackage](./emailrootpackage) | Represents the root package allowing working with metadata in an email message. |
1819
| [EmlPackage](./emlpackage) | Represents EML message metadata. |
1920
| [EmlRootPackage](./emlrootpackage) | Represents the root package allowing working with metadata in an EML email message. |
21+
| [MsgAttachmentPackage](./msgattachmentpackage) | Represents a metadata package containing email attachment name and data. |
2022
| [MsgPackage](./msgpackage) | Represents MSG message metadata. |
2123
| [MsgRootPackage](./msgrootpackage) | Represents the root package allowing working with metadata in an MSG email message. |
2224

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
title: EmailAttachmentPackage
3+
second_title: GroupDocs.Metadata for .NET API Reference
4+
description: Represents a metadata package containing email attachment name.
5+
type: docs
6+
weight: 1600
7+
url: /net/groupdocs.metadata.formats.email/emailattachmentpackage/
8+
---
9+
## EmailAttachmentPackage class
10+
11+
Represents a metadata package containing email attachment name.
12+
13+
```csharp
14+
public class EmailAttachmentPackage : CustomPackage
15+
```
16+
17+
## Properties
18+
19+
| Name | Description |
20+
| --- | --- |
21+
| [Count](../../groupdocs.metadata.common/metadatapackage/count) { get; } | Gets the number of metadata properties. |
22+
| [Item](../../groupdocs.metadata.common/metadatapackage/item) { get; } | Gets the [`MetadataProperty`](../../groupdocs.metadata.common/metadataproperty) with the specified name. |
23+
| [Keys](../../groupdocs.metadata.common/metadatapackage/keys) { get; } | Gets a collection of the metadata property names. |
24+
| [MetadataType](../../groupdocs.metadata.common/metadatapackage/metadatatype) { get; } | Gets the metadata type. |
25+
| [Name](../../groupdocs.metadata.formats.email/emailattachmentpackage/name) { getset; } | Gets the attachment name. |
26+
| [PropertyDescriptors](../../groupdocs.metadata.common/metadatapackage/propertydescriptors) { get; } | Gets a collection of descriptors that contain information about properties accessible through the GroupDocs.Metadata search engine. |
27+
28+
## Methods
29+
30+
| Name | Description |
31+
| --- | --- |
32+
| virtual [AddProperties](../../groupdocs.metadata.common/metadatapackage/addproperties)(Func<MetadataPropertybool>, PropertyValue) | Adds known metadata properties satisfying the specified predicate. The operation is recursive so it affects all nested packages as well. |
33+
| [Contains](../../groupdocs.metadata.common/metadatapackage/contains)(string) | Determines whether the package contains a metadata property with the specified name. |
34+
| virtual [FindProperties](../../groupdocs.metadata.common/metadatapackage/findproperties)(Func<MetadataPropertybool>) | Finds the metadata properties satisfying the specified predicate. The search is recursive so it affects all nested packages as well. |
35+
| [GetEnumerator](../../groupdocs.metadata.common/metadatapackage/getenumerator)() | Returns an enumerator that iterates through the collection. |
36+
| virtual [RemoveProperties](../../groupdocs.metadata.common/metadatapackage/removeproperties)(Func<MetadataPropertybool>) | Removes metadata properties satisfying the specified predicate. |
37+
| virtual [Sanitize](../../groupdocs.metadata.common/metadatapackage/sanitize)() | Removes writable metadata properties from the package. The operation is recursive so it affects all nested packages as well. |
38+
| virtual [SetProperties](../../groupdocs.metadata.common/metadatapackage/setproperties)(Func<MetadataPropertybool>, PropertyValue) | 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`](../../groupdocs.metadata.common/metadatapackage/addproperties) and [`UpdateProperties`](../../groupdocs.metadata.common/metadatapackage/updateproperties). 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. |
39+
| virtual [UpdateProperties](../../groupdocs.metadata.common/metadatapackage/updateproperties)(Func<MetadataPropertybool>, PropertyValue) | Updates known metadata properties satisfying the specified predicate. The operation is recursive so it affects all nested packages as well. |
40+
41+
### See Also
42+
43+
* class [CustomPackage](../../groupdocs.metadata.common/custompackage)
44+
* namespace [GroupDocs.Metadata.Formats.Email](../../groupdocs.metadata.formats.email)
45+
* assembly [GroupDocs.Metadata](../../)
46+
47+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.metadata.dll -->
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: Name
3+
second_title: GroupDocs.Metadata for .NET API Reference
4+
description: Gets the attachment name.
5+
type: docs
6+
weight: 10
7+
url: /net/groupdocs.metadata.formats.email/emailattachmentpackage/name/
8+
---
9+
## EmailAttachmentPackage.Name property
10+
11+
Gets the attachment name.
12+
13+
```csharp
14+
public string Name { get; set; }
15+
```
16+
17+
### Property Value
18+
19+
The attachment name.
20+
21+
### See Also
22+
23+
* class [EmailAttachmentPackage](../../emailattachmentpackage)
24+
* namespace [GroupDocs.Metadata.Formats.Email](../../../groupdocs.metadata.formats.email)
25+
* assembly [GroupDocs.Metadata](../../../)
26+
27+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.metadata.dll -->

content/sites/groupdocs/metadata/english/net/groupdocs.metadata.formats.email/emailheaderpackage/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: EmailHeaderPackage
33
second_title: GroupDocs.Metadata for .NET API Reference
44
description: Represents a metadata package containing email message headers.
55
type: docs
6-
weight: 1600
6+
weight: 1610
77
url: /net/groupdocs.metadata.formats.email/emailheaderpackage/
88
---
99
## EmailHeaderPackage class

content/sites/groupdocs/metadata/english/net/groupdocs.metadata.formats.email/emailpackage/_index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: EmailPackage
33
second_title: GroupDocs.Metadata for .NET API Reference
44
description: Represents email message metadata.
55
type: docs
6-
weight: 1610
6+
weight: 1620
77
url: /net/groupdocs.metadata.formats.email/emailpackage/
88
---
99
## EmailPackage class
@@ -18,7 +18,6 @@ public abstract class EmailPackage : CustomPackage
1818

1919
| Name | Description |
2020
| --- | --- |
21-
| [AttachedFileNames](../../groupdocs.metadata.formats.email/emailpackage/attachedfilenames) { get; } | Gets an array of the names of the attached files. |
2221
| [BlindCarbonCopyRecipients](../../groupdocs.metadata.formats.email/emailpackage/blindcarboncopyrecipients) { get; set; } | Gets or sets the array of BCC (blind carbon copy) recipients of the email message. |
2322
| [CarbonCopyRecipients](../../groupdocs.metadata.formats.email/emailpackage/carboncopyrecipients) { getset; } | Gets or sets the array of CC (carbon copy) recipients of the email message. |
2423
| [Count](../../groupdocs.metadata.common/metadatapackage/count) { get; } | Gets the number of metadata properties. |

content/sites/groupdocs/metadata/english/net/groupdocs.metadata.formats.email/emailpackage/attachedfilenames/_index.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

content/sites/groupdocs/metadata/english/net/groupdocs.metadata.formats.email/emailpackage/blindcarboncopyrecipients/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: BlindCarbonCopyRecipients
33
second_title: GroupDocs.Metadata for .NET API Reference
44
description: Gets or sets the array of BCC blind carbon copy recipients of the email message.
55
type: docs
6-
weight: 20
6+
weight: 10
77
url: /net/groupdocs.metadata.formats.email/emailpackage/blindcarboncopyrecipients/
88
---
99
## EmailPackage.BlindCarbonCopyRecipients property

content/sites/groupdocs/metadata/english/net/groupdocs.metadata.formats.email/emailpackage/carboncopyrecipients/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: CarbonCopyRecipients
33
second_title: GroupDocs.Metadata for .NET API Reference
44
description: Gets or sets the array of CC carbon copy recipients of the email message.
55
type: docs
6-
weight: 30
6+
weight: 20
77
url: /net/groupdocs.metadata.formats.email/emailpackage/carboncopyrecipients/
88
---
99
## EmailPackage.CarbonCopyRecipients property

content/sites/groupdocs/metadata/english/net/groupdocs.metadata.formats.email/emailpackage/headers/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Headers
33
second_title: GroupDocs.Metadata for .NET API Reference
44
description: Gets a metadata package containing the email headers.
55
type: docs
6-
weight: 40
6+
weight: 30
77
url: /net/groupdocs.metadata.formats.email/emailpackage/headers/
88
---
99
## EmailPackage.Headers property

content/sites/groupdocs/metadata/english/net/groupdocs.metadata.formats.email/emailpackage/recipients/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Recipients
33
second_title: GroupDocs.Metadata for .NET API Reference
44
description: Gets or sets the array of the email recipients.
55
type: docs
6-
weight: 50
6+
weight: 40
77
url: /net/groupdocs.metadata.formats.email/emailpackage/recipients/
88
---
99
## EmailPackage.Recipients property

0 commit comments

Comments
 (0)