Skip to content

Commit cc84a15

Browse files
Update file(s) "/." from "groupdocs-conversion/Groupdocs.Conversion-References"
1 parent b80f40e commit cc84a15

65 files changed

Lines changed: 388 additions & 82 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/conversion/english/net/groupdocs.conversion.options.convert/emailconvertoptions/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public class EmailConvertOptions : ConvertOptions<EmailFileType>
2424

2525
| Name | Description |
2626
| --- | --- |
27+
| [AttachmentContentHandler](../../groupdocs.conversion.options.convert/emailconvertoptions/attachmentcontenthandler) { get; set; } | A delegate to handle custom processing of email attachments. The delegate takes the attachment name, content type and original attachment stream as parameters and returns the modified attachment stream. |
2728
| [Format](../../groupdocs.conversion.options.convert/convertoptions-1/format) { getset; } | The desired file type the input document should be converted to. |
2829
| virtual [Format](../../groupdocs.conversion.options.convert/convertoptions/format) { getset; } | Implements [`Format`](../iconvertoptions/format) |
2930

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: AttachmentContentHandler
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: A delegate to handle custom processing of email attachments. The delegate takes the attachment name content type and original attachment stream as parameters and returns the modified attachment stream.
5+
type: docs
6+
weight: 20
7+
url: /net/groupdocs.conversion.options.convert/emailconvertoptions/attachmentcontenthandler/
8+
---
9+
## EmailConvertOptions.AttachmentContentHandler property
10+
11+
A delegate to handle custom processing of email attachments. The delegate takes the attachment name, content type and original attachment stream as parameters and returns the modified attachment stream.
12+
13+
```csharp
14+
public Func<string, string, Stream, Stream> AttachmentContentHandler { get; set; }
15+
```
16+
17+
### See Also
18+
19+
* class [EmailConvertOptions](../../emailconvertoptions)
20+
* namespace [GroupDocs.Conversion.Options.Convert](../../../groupdocs.conversion.options.convert)
21+
* assembly [GroupDocs.Conversion](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->

content/sites/groupdocs/conversion/english/net/groupdocs.conversion.options.load/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ The namespace provides classes to specify additional options for document loadin
3434
| [LoadOptions](./loadoptions) | Abstract document load options class. |
3535
| [MboxLoadOptions](./mboxloadoptions) | Options for loading Mbox documents. |
3636
| [NoteLoadOptions](./noteloadoptions) | Options for loading One documents. |
37+
| [NsfLoadOptions](./nsfloadoptions) | Options for loading Nsf documents. |
3738
| [OlmLoadOptions](./olmloadoptions) | Options for loading Olm documents. |
3839
| [PageDescriptionLanguageLoadOptions](./pagedescriptionlanguageloadoptions) | Options for loading page description language documents. |
3940
| [PclLoadOptions](./pclloadoptions) | Options for loading Pcl documents. |
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
title: NsfLoadOptions
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Options for loading Nsf documents.
5+
type: docs
6+
weight: 2370
7+
url: /net/groupdocs.conversion.options.load/nsfloadoptions/
8+
---
9+
## NsfLoadOptions class
10+
11+
Options for loading Nsf documents.
12+
13+
```csharp
14+
public sealed class NsfLoadOptions : LoadOptions, IDocumentsContainerLoadOptions
15+
```
16+
17+
## Constructors
18+
19+
| Name | Description |
20+
| --- | --- |
21+
| [NsfLoadOptions](nsfloadoptions)() | Initializes new instance of [`NsfLoadOptions`](../nsfloadoptions) class. |
22+
23+
## Properties
24+
25+
| Name | Description |
26+
| --- | --- |
27+
| [ConvertOwned](../../groupdocs.conversion.options.load/nsfloadoptions/convertowned) { get; } | Implements [`ConvertOwned`](../../groupdocs.conversion.contracts/idocumentscontainerloadoptions/convertowned) Readonly. Set to true. The owned documents will be converted |
28+
| [ConvertOwner](../../groupdocs.conversion.options.load/nsfloadoptions/convertowner) { get; } | Implements [`ConvertOwner`](../../groupdocs.conversion.contracts/idocumentscontainerloadoptions/convertowner) Readonly. Set to false. The owner will not be converted |
29+
| [Depth](../../groupdocs.conversion.options.load/nsfloadoptions/depth) { getset; } | Implements [`Depth`](../../groupdocs.conversion.contracts/idocumentscontainerloadoptions/depth) Default: 3 |
30+
| virtual [Format](../../groupdocs.conversion.options.load/loadoptions/format) { get; } | Input document file type. |
31+
32+
## Methods
33+
34+
| Name | Description |
35+
| --- | --- |
36+
| [Clone](../../groupdocs.conversion.options.load/nsfloadoptions/clone)() | Clones current instance. |
37+
| override [Equals](../../groupdocs.conversion.contracts/valueobject/equals)(object) | Determines whether two object instances are equal. |
38+
| virtual [Equals](../../groupdocs.conversion.contracts/valueobject/equals)(ValueObject) | Determines whether two object instances are equal. |
39+
| override [GetHashCode](../../groupdocs.conversion.contracts/valueobject/gethashcode)() | Serves as the default hash function. |
40+
41+
### See Also
42+
43+
* class [LoadOptions](../loadoptions)
44+
* interface [IDocumentsContainerLoadOptions](../../groupdocs.conversion.contracts/idocumentscontainerloadoptions)
45+
* namespace [GroupDocs.Conversion.Options.Load](../../groupdocs.conversion.options.load)
46+
* assembly [GroupDocs.Conversion](../../)
47+
48+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Clone
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Clones current instance.
5+
type: docs
6+
weight: 50
7+
url: /net/groupdocs.conversion.options.load/nsfloadoptions/clone/
8+
---
9+
## NsfLoadOptions.Clone method
10+
11+
Clones current instance.
12+
13+
```csharp
14+
public object Clone()
15+
```
16+
17+
### See Also
18+
19+
* class [NsfLoadOptions](../../nsfloadoptions)
20+
* namespace [GroupDocs.Conversion.Options.Load](../../../groupdocs.conversion.options.load)
21+
* assembly [GroupDocs.Conversion](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: ConvertOwned
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Implements ConvertOwnedgroupdocs.conversion.contracts/idocumentscontainerloadoptions/convertowned Readonly. Set to true. The owned documents will be converted
5+
type: docs
6+
weight: 20
7+
url: /net/groupdocs.conversion.options.load/nsfloadoptions/convertowned/
8+
---
9+
## NsfLoadOptions.ConvertOwned property
10+
11+
Implements [`ConvertOwned`](../../../groupdocs.conversion.contracts/idocumentscontainerloadoptions/convertowned) Readonly. Set to true. The owned documents will be converted
12+
13+
```csharp
14+
public bool ConvertOwned { get; }
15+
```
16+
17+
### See Also
18+
19+
* class [NsfLoadOptions](../../nsfloadoptions)
20+
* namespace [GroupDocs.Conversion.Options.Load](../../../groupdocs.conversion.options.load)
21+
* assembly [GroupDocs.Conversion](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: ConvertOwner
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Implements ConvertOwnergroupdocs.conversion.contracts/idocumentscontainerloadoptions/convertowner Readonly. Set to false. The owner will not be converted
5+
type: docs
6+
weight: 30
7+
url: /net/groupdocs.conversion.options.load/nsfloadoptions/convertowner/
8+
---
9+
## NsfLoadOptions.ConvertOwner property
10+
11+
Implements [`ConvertOwner`](../../../groupdocs.conversion.contracts/idocumentscontainerloadoptions/convertowner) Readonly. Set to false. The owner will not be converted
12+
13+
```csharp
14+
public bool ConvertOwner { get; }
15+
```
16+
17+
### See Also
18+
19+
* class [NsfLoadOptions](../../nsfloadoptions)
20+
* namespace [GroupDocs.Conversion.Options.Load](../../../groupdocs.conversion.options.load)
21+
* assembly [GroupDocs.Conversion](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Depth
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Implements Depthgroupdocs.conversion.contracts/idocumentscontainerloadoptions/depth Default 3
5+
type: docs
6+
weight: 40
7+
url: /net/groupdocs.conversion.options.load/nsfloadoptions/depth/
8+
---
9+
## NsfLoadOptions.Depth property
10+
11+
Implements [`Depth`](../../../groupdocs.conversion.contracts/idocumentscontainerloadoptions/depth) Default: 3
12+
13+
```csharp
14+
public int Depth { get; set; }
15+
```
16+
17+
### See Also
18+
19+
* class [NsfLoadOptions](../../nsfloadoptions)
20+
* namespace [GroupDocs.Conversion.Options.Load](../../../groupdocs.conversion.options.load)
21+
* assembly [GroupDocs.Conversion](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: NsfLoadOptions
3+
second_title: GroupDocs.Conversion for .NET API Reference
4+
description: Initializes new instance of NsfLoadOptionsgroupdocs.conversion.options.load/nsfloadoptions class.
5+
type: docs
6+
weight: 10
7+
url: /net/groupdocs.conversion.options.load/nsfloadoptions/nsfloadoptions/
8+
---
9+
## NsfLoadOptions constructor
10+
11+
Initializes new instance of [`NsfLoadOptions`](../../nsfloadoptions) class.
12+
13+
```csharp
14+
public NsfLoadOptions()
15+
```
16+
17+
### See Also
18+
19+
* class [NsfLoadOptions](../../nsfloadoptions)
20+
* namespace [GroupDocs.Conversion.Options.Load](../../../groupdocs.conversion.options.load)
21+
* assembly [GroupDocs.Conversion](../../../)
22+
23+
<!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.conversion.dll -->

content/sites/groupdocs/conversion/english/net/groupdocs.conversion.options.load/olmloadoptions/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: OlmLoadOptions
33
second_title: GroupDocs.Conversion for .NET API Reference
44
description: Options for loading Olm documents.
55
type: docs
6-
weight: 2370
6+
weight: 2380
77
url: /net/groupdocs.conversion.options.load/olmloadoptions/
88
---
99
## OlmLoadOptions class

0 commit comments

Comments
 (0)