AdrExtensionSet Method
Sets all the flags set in flags in value.
Namespace: FolkerKinzel.VCards.ExtensionsAssembly: FolkerKinzel.VCards (in FolkerKinzel.VCards.dll) Version: 8.1.0+9753915cd0f8006e7e5b4f62aa63aa3651006f06
public static Adr? Set(
this Adr? value,
Adr flags
)
<ExtensionAttribute>
Public Shared Function Set (
value As Adr?,
flags As Adr
) As Adr?
public:
[ExtensionAttribute]
static Nullable<Adr> Set(
Nullable<Adr> value,
Adr flags
)
[<ExtensionAttribute>]
static member Set :
value : Nullable<Adr> *
flags : Adr -> Nullable<Adr>
- value NullableAdr
- The value to which all the flags set in flags are added.
- flags Adr
- A single Adr value or a combination
of several Adr values.
NullableAdrA value, which has all flags set that are set in
value and
flags. If
value is
null,
flags is returned.In Visual Basic and C#, you can call this method as an instance method on any object of type
NullableAdr. 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).