C# Класс Castle.MonoRail.Framework.Adapters.FileDictionaryAdapter

Adapts the ASP.Net HttpFileCollection to MonoRail dictionary
Наследование: IDictionary
Показать файл Открыть проект

Открытые методы

Метод Описание
Add ( object key, object value ) : void

Adds an element with the provided key and value to the object.

Clear ( ) : void

Removes all elements from the object.

Contains ( object key ) : bool

Determines whether the object contains an element with the specified key.

CopyTo ( Array array, int index ) : void

Copies the elements of the to an , starting at a particular index.

FileDictionaryAdapter ( System.Web.HttpFileCollection fileCollection ) : System

Initializes a new instance of the FileDictionaryAdapter class.

GetEnumerator ( ) : IEnumerator

Returns an enumerator that iterates through a collection.

Remove ( object key ) : void

Removes the element with the specified key from the object.

this ( object key ) : object

Gets or sets the System.Object with the specified key.

Приватные методы

Метод Описание
IDictionary ( ) : IDictionaryEnumerator

Returns an object for the object.

Описание методов

Add() публичный Метод

Adds an element with the provided key and value to the object.
An element with the same key already exists in the object. key is null. The is read-only.-or- The has a fixed size.
public Add ( object key, object value ) : void
key object The to use as the key of the element to add.
value object The to use as the value of the element to add.
Результат void

Clear() публичный Метод

Removes all elements from the object.
The object is read-only.
public Clear ( ) : void
Результат void

Contains() публичный Метод

Determines whether the object contains an element with the specified key.
key is null.
public Contains ( object key ) : bool
key object The key to locate in the object.
Результат bool

CopyTo() публичный Метод

Copies the elements of the to an , starting at a particular index.
array is null. index is less than zero. array is multidimensional.-or- index is equal to or greater than the length of array.-or- The number of elements in the source is greater than the available space from index to the end of the destination array. The type of the source cannot be cast automatically to the type of the destination array.
public CopyTo ( Array array, int index ) : void
array System.Array The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing.
index int The zero-based index in array at which copying begins.
Результат void

FileDictionaryAdapter() публичный Метод

Initializes a new instance of the FileDictionaryAdapter class.
public FileDictionaryAdapter ( System.Web.HttpFileCollection fileCollection ) : System
fileCollection System.Web.HttpFileCollection The file collection.
Результат System

GetEnumerator() публичный Метод

Returns an enumerator that iterates through a collection.
public GetEnumerator ( ) : IEnumerator
Результат IEnumerator

Remove() публичный Метод

Removes the element with the specified key from the object.
The object is read-only.-or- The has a fixed size. key is null.
public Remove ( object key ) : void
key object The key of the element to remove.
Результат void

this() публичный Метод

Gets or sets the System.Object with the specified key.
public this ( object key ) : object
key object
Результат object