Embeds an image attachment with a mime-type compatible with its internal representation.

Namespace:  Gallio.Framework
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.459.0)

Syntax

C#
public static BinaryAttachment EmbedImage(
	string attachmentName,
	Image image
)
Visual Basic (Declaration)
Public Shared Function EmbedImage ( _
	attachmentName As String, _
	image As Image _
) As BinaryAttachment

Parameters

attachmentName
Type: System..::.String
The name of the attachment to create or null to automatically assign one. The attachment name must be unique within the scope of the currently executing test step.
image
Type: System.Drawing..::.Image
The image to attach.

Return Value

The attachment.

Remarks

This is a convenience method that forwards the request to the current default log stream writer as returned by the Default property.

Exceptions

ExceptionCondition
System..::.ArgumentNullExceptionThrown if image is null.
System..::.InvalidOperationExceptionThrown if there is already an attachment with the same name.

See Also