Click here to Skip to main content
15,891,847 members
Articles / Web Development / HTML

Gallery Server Pro - An ASP.NET Gallery for Sharing Photos, Video, Audio and Other Media

Rate me:
Please Sign up or sign in to vote.
4.86/5 (131 votes)
18 Oct 2013GPL331 min read 827.8K   539  
Gallery Server Pro is a complete, stable ASP.NET gallery for sharing photos, video, audio and other media. This article presents the overall architecture and major features.
using System;

namespace GalleryServerPro.Business.Interfaces
{
	/// <summary>
	/// A collection of <see cref="IGallery" /> objects.
	/// </summary>
	public interface IGalleryCollection : System.Collections.Generic.ICollection<IGallery>
	{
		/// <summary>
		/// Sort the objects in this collection based on the <see cref="IGallery.GalleryId" /> property.
		/// </summary>
		void Sort();

		/// <summary>
		/// Adds the galleries to the current collection.
		/// </summary>
		/// <param name="galleries">The galleries to add to the current collection.</param>
		void AddRange(System.Collections.Generic.IEnumerable<IGallery> galleries);

		/// <summary>
		/// Gets a reference to the <see cref="IGallery" /> object at the specified index position.
		/// </summary>
		/// <param name="indexPosition">An integer specifying the position of the object within this collection to
		/// return. Zero returns the first item.</param>
		/// <returns>Returns a reference to the <see cref="IGallery" /> object at the specified index position.</returns>
		IGallery this[Int32 indexPosition]
		{
			get;
			set;
		}

		/// <summary>
		/// Searches for the specified object and returns the zero-based index of the first occurrence within the collection.  
		/// </summary>
		/// <param name="gallery">The gallery to locate in the collection. The value can be a null 
		/// reference (Nothing in Visual Basic).</param>
		/// <returns>The zero-based index of the first occurrence of gallery within the collection, if found; 
		/// otherwise, �1. </returns>
		Int32 IndexOf(IGallery gallery);

		/// <summary>
		/// Determines whether the <paramref name="gallery"/> is already a member of the collection. An object is considered a member
		/// of the collection if they both have the same <see cref="IGallery.GalleryId" />.
		/// </summary>
		/// <param name="gallery">An <see cref="IGallery"/> to determine whether it is a member of the current collection.</param>
		/// <returns>Returns <c>true</c> if <paramref name="gallery"/> is a member of the current collection;
		/// otherwise returns <c>false</c>.</returns>
		new bool Contains(IGallery gallery);

		/// <summary>
		/// Adds the specified gallery.
		/// </summary>
		/// <param name="gallery">The gallery to add.</param>
		new void Add(IGallery gallery);

		/// <summary>
		/// Find the gallery in the collection that matches the specified <paramref name="galleryId" />. If no matching object is found,
		/// null is returned.
		/// </summary>
		/// <param name="galleryId">The ID that uniquely identifies the gallery.</param>
		/// <returns>Returns an <see cref="IGallery" />object from the collection that matches the specified <paramref name="galleryId" />,
		/// or null if no matching object is found.</returns>
		IGallery FindById(int galleryId);

		/// <summary>
		/// Creates a new, empty instance of an <see cref="IGallery" /> object. This method can be used by code that only has a 
		/// reference to the interface layer and therefore cannot create a new instance of an object on its own.
		/// </summary>
		/// <returns>Returns a new, empty instance of an <see cref="IGallery" /> object.</returns>
		IGallery CreateEmptyGalleryInstance();

		/// <summary>
		/// Creates a new, empty instance of an <see cref="IGalleryCollection" /> object. This method can be used by code that only has a 
		/// reference to the interface layer and therefore cannot create a new instance of an object on its own.
		/// </summary>
		/// <returns>Returns a new, empty instance of an <see cref="IGalleryCollection" /> object.</returns>
		IGalleryCollection CreateEmptyGalleryCollection();

		/// <summary>
		/// Creates a new collection containing deep copies of the items it contains.
		/// </summary>
		/// <returns>Returns a new collection containing deep copies of the items it contains.</returns>
		IGalleryCollection Copy();
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior) Tech Info Systems
United States United States
I have nearly 20 years of industry experience in software development, architecture, and Microsoft Office products. My company Tech Info Systems provides custom software development services for corporations, governments, and other organizations. Tech Info Systems is a registered member of the Microsoft Partner Program and I am a Microsoft Certified Professional Developer (MCPD).

I am the creator and lead developer of Gallery Server Pro, a free, open source ASP.NET gallery for sharing photos, video, audio, documents, and other files over the web. It has been developed over several years and has involved thousands of hours. The end result is a robust, configurable, and professional grade gallery that can be integrated into your web site, whether you are a large corporation, small business, professional photographer, or a local church.

Comments and Discussions