Sign

Sign(Stream, SignOptions)

Signs document with SignOptions and saves result to a stream.

public SignResult Sign(Stream document, SignOptions signOptions)
Parameter Type Description
document Stream The output document stream.
signOptions SignOptions The signature options.

Return Value

Returns instance of SignResult with list of newly created signatures.

Remarks

Learn more

See Also


Sign(Stream, SignOptions, SaveOptions)

Signs document with SignOptions and saves result to a stream with predefined SaveOptions.

public SignResult Sign(Stream document, SignOptions signOptions, SaveOptions saveOptions)
Parameter Type Description
document Stream The output document stream.
signOptions SignOptions The signature options.
saveOptions SaveOptions The save options.

Return Value

Returns instance of SignResult with list of newly created signatures.

Remarks

Learn more

See Also


Sign(Stream, List<SignOptions>)

Signs document with collection of SignOptions and saves result to a stream.

public SignResult Sign(Stream document, List<SignOptions> signOptionsList)
Parameter Type Description
document Stream The output document stream.
signOptionsList List`1 The list of signature options.

Return Value

Returns instance of SignResult with list of newly created signatures.

Remarks

Learn more

See Also


Sign(Stream, List<SignOptions>, SaveOptions)

Signs document with collection of SignOptions and saves result to a stream with predefined SaveOptions.

public SignResult Sign(Stream document, List<SignOptions> signOptionsList, SaveOptions saveOptions)
Parameter Type Description
document Stream The output document stream.
signOptionsList List`1 The list of signature options.
saveOptions SaveOptions The save options.

Return Value

Returns instance of SignResult with list of newly created signatures.

Remarks

Learn more

See Also


Sign(string, SignOptions)

Signs document with SignOptions and saves result to specified file path.

public SignResult Sign(string filePath, SignOptions signOptions)
Parameter Type Description
filePath String The output file path.
signOptions SignOptions The signature options.

Return Value

Returns instance of SignResult with list of newly created signatures.

Remarks

Learn more

See Also


Sign(string, SignOptions, SaveOptions)

Signs document with SignOptions and saves result to specified file path with predefined SaveOptions.

public SignResult Sign(string filePath, SignOptions signOptions, SaveOptions saveOptions)
Parameter Type Description
filePath String The output file path.
signOptions SignOptions The signature options.
saveOptions SaveOptions The save options.

Return Value

Returns instance of SignResult with list of newly created signatures.

Remarks

Learn more

See Also


Sign(string, List<SignOptions>)

Signs document with collection of SignOptions and saves result to specified file path.

public SignResult Sign(string filePath, List<SignOptions> signOptionsList)
Parameter Type Description
filePath String The output file path.
signOptionsList List`1 The list of signature options.

Return Value

Returns instance of SignResult with list of newly created signatures.

Remarks

Learn more

See Also


Sign(string, List<SignOptions>, SaveOptions)

Signs document with collection of SignOptions and saves result to specified file path with predefined SaveOptions.

public SignResult Sign(string filePath, List<SignOptions> signOptionsList, SaveOptions saveOptions)
Parameter Type Description
filePath String The output file path.
signOptionsList List`1 The list of signature options.
saveOptions SaveOptions The save options.

Return Value

Returns instance of SignResult with list of newly created signatures.

Remarks

Learn more

See Also