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

GetFromGroup() private méthode

private GetFromGroup ( long gid, long albumId = null, IEnumerable aids = null, uint count = null, uint offset = null ) : ReadOnlyCollection
gid long
albumId long
aids IEnumerable
count uint
offset uint
Résultat ReadOnlyCollection
        public ReadOnlyCollection<Audio> GetFromGroup(long gid, long? albumId = null, IEnumerable<long> aids = null, uint? count = null, uint? offset = null)
        {
            User user;
            return publicGet("gid", gid, out user, albumId, aids, false, count, offset);
        }