Exemplo n.º 1
0
		public void SetPrincipal(User user)
		{
			GenericIdentity identity=new GenericIdentity(user.UserName);
			string[] Roles=new String[user.Roles.Count];
			user.Roles.CopyTo(Roles,0);
			GenericPrincipal principal=new GenericPrincipal(identity, Roles);
			Thread.CurrentPrincipal=principal;
		}
Exemplo n.º 2
0
		public void SaveUser(User user)
		{
			//Create new file
			FileStream fs=new FileStream(GetFilename(user.UserName), FileMode.Create);
			//Fire-up crypto to secure file
			DES cryptoalgorithm = DES.Create();
			CryptoStream encStream = new CryptoStream(fs, cryptoalgorithm.CreateEncryptor(Key, IV), CryptoStreamMode.Write);
			//Serialize user into encrypted file
			XmlSerializer serializer=new XmlSerializer(user.GetType());
			serializer.Serialize(encStream, user);
			encStream.Close();
			fs.Close();
		}
Exemplo n.º 3
0
		public void DeleteUser(User user)
		{
			_SecurityStorage.DeleteUser(user);
		}
Exemplo n.º 4
0
		public void SaveUser(User user)
		{
			_SecurityStorage.SaveUser(user);
		}
Exemplo n.º 5
0
		/// <summary>
		///    <para>Adds a <see cref='.User'/> with the specified value to the 
		///    <see cref='.UserCollection'/> .</para>
		/// </summary>
		/// <param name='value'>The <see cref='.User'/> to add.</param>
		/// <returns>
		///    <para>The index at which the new element was inserted.</para>
		/// </returns>
		/// <seealso cref='.UserCollection.AddRange'/>
		public int Add(User value) 
		{
			return List.Add(value);
		}
Exemplo n.º 6
0
		public void DeleteUser(User user)
		{
			File.Delete(GetFilename(user.UserName));
		}
Exemplo n.º 7
0
		/// <summary>
		///    <para> Removes a specific <see cref='.User'/> from the 
		///    <see cref='.UserCollection'/> .</para>
		/// </summary>
		/// <param name='value'>The <see cref='.User'/> to remove from the <see cref='.UserCollection'/> .</param>
		/// <returns><para>None.</para></returns>
		/// <exception cref='System.ArgumentException'><paramref name='value'/> is not found in the Collection. </exception>
		public void Remove(User value) 
		{
			List.Remove(value);
		}
Exemplo n.º 8
0
		/// <summary>
		///     <para>
		///       Initializes a new instance of <see cref='.UserCollection'/> containing any array of <see cref='.User'/> objects.
		///    </para>
		/// </summary>
		/// <param name='value'>
		///       A array of <see cref='.User'/> objects with which to intialize the collection
		/// </param>
		public UserCollection(User[] value) 
		{
			this.AddRange(value);
		}
Exemplo n.º 9
0
		/// <summary>
		/// <para>Inserts a <see cref='.User'/> into the <see cref='.UserCollection'/> at the specified index.</para>
		/// </summary>
		/// <param name='index'>The zero-based index where <paramref name='value'/> should be inserted.</param>
		/// <param name=' value'>The <see cref='.User'/> to insert.</param>
		/// <returns><para>None.</para></returns>
		/// <seealso cref='.UserCollection.Add'/>
		public void Insert(int index, User value) 
		{
			List.Insert(index, value);
		}
Exemplo n.º 10
0
		/// <summary>
		///    <para>Returns the index of a <see cref='.User'/> in 
		///       the <see cref='.UserCollection'/> .</para>
		/// </summary>
		/// <param name='value'>The <see cref='.User'/> to locate.</param>
		/// <returns>
		/// <para>The index of the <see cref='.User'/> of <paramref name='value'/> in the 
		/// <see cref='.UserCollection'/>, if found; otherwise, -1.</para>
		/// </returns>
		/// <seealso cref='.UserCollection.Contains'/>
		public int IndexOf(User value) 
		{
			return List.IndexOf(value);
		}
Exemplo n.º 11
0
		/// <summary>
		/// <para>Copies the <see cref='.UserCollection'/> values to a one-dimensional <see cref='System.Array'/> instance at the 
		///    specified index.</para>
		/// </summary>
		/// <param name='array'><para>The one-dimensional <see cref='System.Array'/> that is the destination of the values copied from <see cref='.UserCollection'/> .</para></param>
		/// <param name='index'>The index in <paramref name='array'/> where copying begins.</param>
		/// <returns>
		///   <para>None.</para>
		/// </returns>
		/// <exception cref='System.ArgumentException'><para><paramref name='array'/> is multidimensional.</para> <para>-or-</para> <para>The number of elements in the <see cref='.UserCollection'/> is greater than the available space between <paramref name='arrayIndex'/> and the end of <paramref name='array'/>.</para></exception>
		/// <exception cref='System.ArgumentNullException'><paramref name='array'/> is <see langword='null'/>. </exception>
		/// <exception cref='System.ArgumentOutOfRangeException'><paramref name='arrayIndex'/> is less than <paramref name='array'/>'s lowbound. </exception>
		/// <seealso cref='System.Array'/>
		public void CopyTo(User[] array, int index) 
		{
			List.CopyTo(array, index);
		}
Exemplo n.º 12
0
		/// <summary>
		/// <para>Gets a value indicating whether the 
		///    <see cref='.UserCollection'/> contains the specified <see cref='.User'/>.</para>
		/// </summary>
		/// <param name='value'>The <see cref='.User'/> to locate.</param>
		/// <returns>
		/// <para><see langword='true'/> if the <see cref='.User'/> is contained in the collection; 
		///   otherwise, <see langword='false'/>.</para>
		/// </returns>
		/// <seealso cref='.UserCollection.IndexOf'/>
		public bool Contains(User value) 
		{
			return List.Contains(value);
		}
Exemplo n.º 13
0
		/// <summary>
		/// <para>Copies the elements of an array to the end of the <see cref='.UserCollection'/>.</para>
		/// </summary>
		/// <param name='value'>
		///    An array of type <see cref='.User'/> containing the objects to add to the collection.
		/// </param>
		/// <returns>
		///   <para>None.</para>
		/// </returns>
		/// <seealso cref='.UserCollection.Add'/>
		public void AddRange(User[] value) 
		{
			for (int i = 0; (i < value.Length); i = (i + 1)) 
			{
				this.Add(value[i]);
			}
		}