OpenHome.Net.ControlPoint.ArgumentString.Value C# (CSharp) Method

Value() private method

Read the value of a binary argument.
Only intended for use with output arguments inside the invocation completed callback. Can only be called once as the first call extracts the string data from the underlying native object
private Value ( ) : String
return String
        String Value()
        {
            IntPtr ptr;
            uint len;
            ActionArgumentGetValueString(iHandle, out ptr, out len);
            String ret = InteropUtils.PtrToStringUtf8(ptr, len);
            OhNetFree(ptr);
            return ret;
        }
    }