Exemplo n.º 1
0
        /// <summary>
        /// Registers a scope in the internal dictionary.
        /// </summary>
        /// <param name="name">The name of the scope.</param>
        internal static SpotifyScope RegisterScope(string name)
        {
            SpotifyScope scope = new SpotifyScope(name);

            Scopes.Add(scope.Name, scope);
            return(scope);
        }
 /// <summary>
 /// Registers a scope in the internal dictionary.
 /// </summary>
 /// <param name="name">The name of the scope.</param>
 internal static SpotifyScope RegisterScope(string name) {
     SpotifyScope scope = new SpotifyScope(name);
     Scopes.Add(scope.Name, scope);
     return scope;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Adds the specified <paramref name="scope"/> to the collection.
 /// </summary>
 /// <param name="scope">The scope to be added.</param>
 public void Add(SpotifyScope scope)
 {
     _list.Add(scope);
 }
 /// <summary>
 /// Adds the specified <code>scope</code> to the collection.
 /// </summary>
 /// <param name="scope">The scope to be added.</param>
 public void Add(SpotifyScope scope) {
     _list.Add(scope);
 }