OEM User's Guide
OEM External Specification
OEM User’s Guide—520330-001
A-48
Adapter Request API (OEM to Adapter)
IsConfigurable
Use the IsConfigurable method to allow the OEM Server to determine whether a
particular adapter can be configured. If this value is true, the OEM Server calls the
adapter’s Configure method when requested by the user. If this value is false, the user
cannot alter the adapter.
Parameters
None
Return Value
•
True if the adapter can be configured
•
False if the adapter cannot be configured
Considerations
If this value is true, the adapter’s Configure method is called as needed. If this value is
false, the adapter’s Configure method is not called.
Example
Dim Adapter As New EMAdapterClass
Dim Config As Boolean
Config = Adapter.IsConfigurable
Function IsConfigurable() As Boolean