FMOD_Studio_EventDescription_GetUserPropertyByIndex() private method

private FMOD_Studio_EventDescription_GetUserPropertyByIndex ( IntPtr eventdescription, int index, USER_PROPERTY_INTERNAL &property ) : RESULT
eventdescription System.IntPtr
index int
property USER_PROPERTY_INTERNAL
return RESULT
        public RESULT getUserPropertyByIndex(int index, out USER_PROPERTY property)
        {
            USER_PROPERTY_INTERNAL uSER_PROPERTY_INTERNAL;
            RESULT rESULT = EventDescription.FMOD_Studio_EventDescription_GetUserPropertyByIndex(this.rawPtr, index, out uSER_PROPERTY_INTERNAL);

            if (rESULT != RESULT.OK)
            {
                property = default(USER_PROPERTY);
                return(rESULT);
            }
            property = uSER_PROPERTY_INTERNAL.createPublic();
            return(RESULT.OK);
        }