CheckpointRestoreExtensionMethods.Checkpoint<TElement> Method (List<TElement>, NaiadWriter)Naiad Help

[This is preliminary documentation and is subject to change.]

Writes this list to the given writer.

Namespace: Microsoft.Research.Naiad.Serialization
Assembly: Microsoft.Research.Naiad (in Microsoft.Research.Naiad.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax

C#
public static void Checkpoint<TElement>(
	this List<TElement> list,
	NaiadWriter writer
)

Parameters

list
Type: System.Collections.Generic.List<TElement>
The list to be written.
writer
Type: Microsoft.Research.Naiad.Serialization.NaiadWriter
The writer.

Type Parameters

TElement
The type of elements in the list.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type List<TElement>. 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).
See Also

Reference