SvgExtensionsSaveAsSvgAsync Method (Identicon, Stream, Boolean)

Saves an Identicon icon as a Scalable Vector Graphics (SVG) file asynchronously.
public static Task SaveAsSvgAsync(
	this Identicon icon,
	Stream stream,
	bool fragment
)
Namespace
Jdenticon
Package
PackageJdenticon-net

Parameters

iconJdenticonIdenticon
The identicon to save.
streamSystem.IOStream
The stream to which the SVG data will be written.
fragmentSystemBoolean
If true the generated SVG will not be encapsulated in the root svg element making it suitable to be embedded in another SVG.

Return Value

Task

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Identicon. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Exceptions

ExceptionCondition
ArgumentNullExceptionstream was null.

See Also

Reference