GetParameter Method (PubSubConnection)
- Last UpdatedApr 08, 2026
- 1 minute read
Retrieves the value of a PubSub parameter.
public bool GetParameter(
string parameterName,
out string outputParameterValue
)
public:
bool GetParameter(
String^ parameterName,
[Out] String^ outputParameterValue
)
Parameters
- parameterName
- The parameter name.
- outputParameterValue
- The string to store the retrieved value in.
PubSubConnection PS = new PubSubConnection();
PS.GetParameter("PS_CONNECT_TIMEOUT", param, 1024);
PubSubConnection PS = new PubSubConnection();
PS.GetParameter("PS_CONNECT_TIMEOUT", param, 1024);