示例#1
0
		/// <summary>
		/// Removes the specified MIME type from the collection.
		/// </summary>
		/// <param name="mimeType">An instance of a <see cref="MimeType"/> to remove from the collection.</param>
		public void Remove(MimeType mimeType)
		{
			BaseRemove(mimeType);
		}
示例#2
0
		/// <summary>
		/// Adds the specified MIME type.
		/// </summary>
		/// <param name="mimeType">An instance of a <see cref="MimeType"/> to remove from the collection.</param>
		public void Add(MimeType mimeType)
		{
			BaseAdd(mimeType);
		}