ChannelExtensionsGetTitle Method

Retrieves the value of title property from the source Channel 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#.

Definition

Namespace: DevCase.ThirdParty.WTelegramClient.Extensions
Assembly: 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 string GetTitle(
	this Channel channel
)

Parameters

channel  Channel
The source channel from which the title property value is to be retrieved.

Return Value

String
The value of title property from the source Channel object.

Usage Note

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