VkNet.Categories.AudioCategory.publicGet C# (CSharp) Méthode

publicGet() private méthode

private publicGet ( string paramId, long id, User &user, long albumId = null, IEnumerable aids = null, bool needUser = null, uint count = null, uint offset = null ) : ReadOnlyCollection
paramId string
id long
user User
albumId long
aids IEnumerable
needUser bool
count uint
offset uint
Résultat ReadOnlyCollection
        private ReadOnlyCollection<Audio> publicGet(
            string paramId,
            long id,
            out User user,
            long? albumId = null,
            IEnumerable<long> aids = null,
            bool? needUser = null,
            uint? count = null,
            uint? offset = null)
        {
            var parameters = new AudioGetParams
            {
                OwnerId = id,
                AlbumId = albumId,
                AudioIds = aids,
                NeedUser = needUser,
                Offset = offset,
                Count = count
            };

            return Get(out user, parameters);
        }