Luxand.FSDK.GetTrackerParameter C# (CSharp) Method

GetTrackerParameter() public static method

public static GetTrackerParameter ( int Tracker, string ParameterName, string &ParameterValue, long MaxSizeInBytes ) : int
Tracker int
ParameterName string
ParameterValue string
MaxSizeInBytes long
return int
        public static int GetTrackerParameter(int Tracker, string ParameterName, out string ParameterValue, long MaxSizeInBytes)
        {
            StringBuilder tmps = new StringBuilder((int)MaxSizeInBytes);
            int res = FSDK_GetTrackerParameter_Old(Tracker, ParameterName, tmps, MaxSizeInBytes);
            ParameterValue = tmps.ToString();
            return res;
        }
FSDK