Constructor
new ChannelExtensions()
- Source:
Methods
getExtensionProperty(channelType, propertyName) → {any}
- Description:
- Get a channel-specific extension property.
- Source:
Parameters:
Name |
Type |
Description |
channelType |
ChannelType
|
The channel type. |
propertyName |
string
|
The name of the property. |
Returns:
The value of the property.
-
Type
-
any
hasExtensionProperty(channelType, propertyName) → {boolean}
- Description:
- Check whether a channel-specific extension property is defined or not.
- Source:
Parameters:
Name |
Type |
Description |
channelType |
ChannelType
|
The channel type. |
propertyName |
string
|
The name of the property. |
Returns:
flag that indicates if the property is set
-
Type
-
boolean
setExtensionProperty(channelType, propertyName, propertyValue)
- Description:
- Set a new channel-specific extension property.
- Source:
Parameters:
Name |
Type |
Description |
channelType |
ChannelType
|
The channel type. |
propertyName |
string
|
The name of the property. |
propertyValue |
any
|
The value of the property. |