IEnumerableExtensionSetAltIDTSource Method

Sets the AltIDs of the items in a VCardProperty collection to the specified value.

Definition

Namespace: FolkerKinzel.VCards.Extensions
Assembly: FolkerKinzel.VCards (in FolkerKinzel.VCards.dll) Version: 8.0.1+a91cc3f0fd39aeb548e16006a60ca9dd10a304a2
C#
public static void SetAltID<TSource>(
	this IEnumerable<TSource>? values,
	string? altID
)
where TSource : VCardProperty, IEnumerable<TSource>

Parameters

values  IEnumerableTSource
An IEnumerableT of VCardProperty objects. The collection may be null, empty, or may contain null references.
altID  String
The value to assign.

Type Parameters

TSource
Generic type parameter that's constrained to be a class that's derived from VCardProperty.

Usage Note

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