MessageExtensionsGetFlags Method
Retrieves the value of
flags field
from the source
Message object.
This method is designed to facilitate field retrieval from an object for VB.NET developers,
accommodating the non-VB.NET compliant member naming convention
used in the WTelegramClient API, originally written in C#.
Namespace: DevCase.ThirdParty.WTelegramClient.ExtensionsAssembly: DevCase.net48.ThirdParty.WTelegramClient (in DevCase.net48.ThirdParty.WTelegramClient.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static Flags GetFlags(
this Message msg
)
<ExtensionAttribute>
Public Shared Function GetFlags (
msg As Message
) As Flags
Dim msg As Message
Dim returnValue As Flags
returnValue = msg.GetFlags()
public:
[ExtensionAttribute]
static Flags GetFlags(
Message^ msg
)
[<ExtensionAttribute>]
static member GetFlags :
msg : Message -> Flags
No code example is currently available or this language may not be supported.
- msg Message
-
The source message from which the flags field value is to be retrieved.
Flags
The value of
flags field from the source
Message object.
In Visual Basic and C#, you can call this method as an instance method on any object of type
Message. 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).