Sets the content of this attachment to data read from the specified stream and sets media type and file name.

Namespace:  Rebex.Mail
Assembly:  Rebex.Mail (in Rebex.Mail.dll) Version: 1.0.3844.0

Syntax

C#
public void SetContent(
	Stream source,
	string name,
	string mediaType
)
Visual Basic (Declaration)
Public Sub SetContent ( _
	source As Stream, _
	name As String, _
	mediaType As String _
)
Visual C++
public:
void SetContent(
	Stream^ source, 
	String^ name, 
	String^ mediaType
)

Parameters

source
Type: System.IO..::.Stream
Source stream to read data from.
name
Type: System..::.String
File name to assign to the content.
mediaType
Type: System..::.String
Media type.

See Also