ForumTopicExtensionsGetId Method
Retrieves the value of
id property
from the source
ForumTopic object.
This method is designed to facilitate property 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 int GetId(
this ForumTopic topic
)
<ExtensionAttribute>
Public Shared Function GetId (
topic As ForumTopic
) As Integer
Dim topic As ForumTopic
Dim returnValue As Integer
returnValue = topic.GetId()
public:
[ExtensionAttribute]
static int GetId(
ForumTopic^ topic
)
[<ExtensionAttribute>]
static member GetId :
topic : ForumTopic -> int
No code example is currently available or this language may not be supported.
- topic ForumTopic
-
The source topic from which the id property value is to be retrieved.
Int32
The value of
id property from the source
ForumTopic object.
In Visual Basic and C#, you can call this method as an instance method on any object of type
ForumTopic. 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).