public int GetAllIds(string[] ids)
        {
            if (ids == null)
            {
                throw new ArgumentNullException("ids");
            }
            int result;

            if (ids.Length > 0)
            {
                result = WorldAnchorTransferBatch.GetAllIds_Internal(this.m_NativePtr, ids);
            }
            else
            {
                result = 0;
            }
            return(result);
        }