Click or drag to resize

Items Class

Items acts as a key/value collection that can be used to organize and share data between an IHttpModule interface and an IHttpHandler interface during an HTTP request
Inheritance Hierarchy
SystemObject
  Dynamicweb.Environment.WebItems

Namespace:  Dynamicweb.Environment.Web
Assembly:  Dynamicweb.Environment.Web (in Dynamicweb.Environment.Web.dll) Version: 3.2.1
Syntax
public class Items : IDictionary, ICollection, 
	IEnumerable

The Items type exposes the following members.

Constructors
  NameDescription
Public methodItems
Initializes a new istance of the Dynamicweb.Environment.Web.Items class that wraps an instance of the HttpContextBase class
Top
Properties
  NameDescription
Public propertyCount
Gets the number of elements contained in the ICollection
Public propertyIsFixedSize
Gets a value indicating if the IDictionary object has a fixed size
Public propertyIsReadOnly
Gets a value indicating if the IDictionary object is read-only
Public propertyIsSynchronized
Gets a value indicating whether access to the ICollection is synchronized (thread-safe)
Public propertyItem
Gets or sets the element with the specified key
Public propertyKeys
Gets an ICollection object containing the keys of the IDictionary object
Public propertySyncRoot
Gets an object that can be used to Synchronize access to the ICollection
Public propertyValues
Gets an ICollection object containing the values in the IDictionary object
Top
Methods
  NameDescription
Public methodAdd
Adds an element with the provided key and value to the IDictionary object
Public methodClear
Removes all elements from the IDictionary object
Public methodContains
Determines whether the IDictionary object contains an element with the specified key
Public methodCopyTo
Copies the elements of the ICollection to an Array, starting at a particular Array index
Public methodGetEnumerator
Returns an IDictionaryEnumerator object for the IDictionary object
Public methodRemove
Removes the element with the specified key
Top
Explicit Interface Implementations
  NameDescription
Explicit interface implementationPrivate methodIEnumerableGetEnumerator
Returns an Enumerator the iterates through a collection
Top
See Also