RelExtensionUnset Method

Unsets all 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 Rel? Unset(
	this Rel? value,
	Rel flags
)

Parameters

value  NullableRel
The value from which the flags set in flags are removed.
flags  Rel
A single Rel value or a combination of several Rel values.

Return Value

NullableRel
A value from which all the flags set in flags are removed, respectively null if all flags are unset. If value is null, null is returned.

Usage Note

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