OpenHome.Net.Core.ParameterBool.ParameterBool C# (CSharp) Method

ParameterBool() public method

Constructor
public ParameterBool ( String aName ) : System
aName String Parameter name
return System
        public ParameterBool(String aName)
        {
            IntPtr name = InteropUtils.StringToHGlobalUtf8(aName);
            iHandle = ServiceParameterCreateBool(name);
            Marshal.FreeHGlobal(name);
        }
    }