ImppExtensionUnset Method
Unsets all flags set in flags in value.
Namespace: FolkerKinzel.VCards.ExtensionsAssembly: FolkerKinzel.VCards (in FolkerKinzel.VCards.dll) Version: 8.1.0+9753915cd0f8006e7e5b4f62aa63aa3651006f06
public static Impp? Unset(
this Impp? value,
Impp flags
)
<ExtensionAttribute>
Public Shared Function Unset (
value As Impp?,
flags As Impp
) As Impp?
public:
[ExtensionAttribute]
static Nullable<Impp> Unset(
Nullable<Impp> value,
Impp flags
)
[<ExtensionAttribute>]
static member Unset :
value : Nullable<Impp> *
flags : Impp -> Nullable<Impp>
- value NullableImpp
- The value from which the flags set in flags are removed.
- flags Impp
- A single Impp value or a combination
of several Impp values.
NullableImppA 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.In Visual Basic and C#, you can call this method as an instance method on any object of type
NullableImpp. 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).