HslHelperExtractBooleanParameter 方法 (String, String, Boolean) |
解析地址的附加Bool类型参数方法,比如你的地址是s=true;D100,可以提取出"s"的值的同时,修改地址本身,如果"s"不存在的话,返回给定的默认值
The method of parsing additional parameters of the address, for example, if your address is s=true;D100, you can extract the value of "s" and modify the address itself. If "s" does not exist, return the given default value
命名空间:
HslCommunication.Core
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static bool ExtractBooleanParameter(
ref string address,
string paraName,
bool defaultValue
)
Public Shared Function ExtractBooleanParameter (
ByRef address As String,
paraName As String,
defaultValue As Boolean
) As Boolean
public:
static bool ExtractBooleanParameter(
String^% address,
String^ paraName,
bool defaultValue
)
static member ExtractBooleanParameter :
address : string byref *
paraName : string *
defaultValue : bool -> bool
参数
- address
- 类型:SystemString
复杂的地址格式,比如:s=true;D100 - paraName
- 类型:SystemString
等待提取的参数名称 - defaultValue
- 类型:SystemBoolean
如果提取的参数信息不存在,返回的默认值信息
返回值
类型:
Boolean解析后的新的数据值或是默认的给定的数据值
参见