コード例 #1
0
        /// <summary>
        /// Registers a scope in the internal dictionary.
        /// </summary>
        /// <param name="name">The name of the scope.</param>
        /// <param name="description">The description of the scope.</param>
        internal static FacebookScope RegisterScope(string name, string description = null)
        {
            FacebookScope scope = new FacebookScope(name, description);

            Scopes.Add(scope.Name, scope);
            return(scope);
        }
コード例 #2
0
 /// <summary>
 /// Adds the specified <code>scope</code> to the collection.
 /// </summary>
 /// <param name="scope">The scope to be added.</param>
 public void Add(FacebookScope scope)
 {
     _list.Add(scope);
 }