TelExtensionSet Method

Sets all the flags set in flags in value.

Definition

Namespace: FolkerKinzel.VCards.Extensions
Assembly: FolkerKinzel.VCards (in FolkerKinzel.VCards.dll) Version: 8.0.1+a91cc3f0fd39aeb548e16006a60ca9dd10a304a2
C#
public static Tel? Set(
	this Tel? value,
	Tel flags
)

Parameters

value  NullableTel
The value to which all the flags set in flags are added.
flags  Tel
A single Tel value or a combination of several Tel values.

Return Value

NullableTel
A value, which has all flags set that are set in value and flags. If value is null, flags is returned.

Usage Note

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