| SignDocDocumentaddAttachmentFile Method |
Add an attachment (read from a file) to the document.
Namespace: de.softpro.signdocsdkAssembly: SPSignDoc_4.1_DotNetLibd (in SPSignDoc_4.1_DotNetLibd.dll) Version: 1.0.5882.21462
Syntaxpublic void addAttachmentFile(
string name,
string description,
string type,
string path
)
Public Sub addAttachmentFile (
name As String,
description As String,
type As String,
path As String
)
public:
void addAttachmentFile(
String^ name,
String^ description,
String^ type,
String^ path
)
member addAttachmentFile :
name : string *
description : string *
type : string *
path : string -> unit
Parameters
- name
- Type: SystemString
The name of the attachment. Will also be
used as filename of the attachment and must
not contain slashes, backslashes, and colons. - description
- Type: SystemString
The description of the attachment (can be
null and empty). - type
- Type: SystemString
The MIME type of the attachment (can be
null and empty). - path
- Type: SystemString
The pathname of the file to be attached.
See Also