﻿<?xml version="1.0" encoding="utf-8"?><Type Name="HttpApplicationState" FullName="System.Web.HttpApplicationState"><TypeSignature Language="C#" Maintainer="auto" Value="public sealed class HttpApplicationState : System.Collections.Specialized.NameObjectCollectionBase" /><AssemblyInfo><AssemblyName>System.Web</AssemblyName><AssemblyPublicKey></AssemblyPublicKey><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the &lt;link location="node:gtk-sharp/programming/threads"&gt;Gtk# Thread Programming&lt;/link&gt; for details.</ThreadSafetyStatement><Base><BaseTypeName>System.Collections.Specialized.NameObjectCollectionBase</BaseTypeName></Base><Interfaces></Interfaces><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>An ASP.NET application is the sum of all files, pages, handlers, modules, and code within the scope of a virtual directory and its subdirectories on a single Web server.</para><para>A single instance of an <see cref="T:System.Web.HttpApplicationState" /> class is created the first time a client requests any URL resource from within a particular ASP.NET application virtual directory. A separate single instance is created for each ASP.NET application on a Web server. A reference to each instance is then exposed via the intrinsic <see cref="P:System.Web.HttpContext.Application" /> object.</para><para>Application state is not shared across either a Web farm (in which an application is hosted across multiple servers) or a Web garden (in which an application is hosted across multiple processes on the same computer).</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Enables sharing of global information across multiple sessions and requests within an ASP.NET application.</para></summary></Docs><Members><Member MemberName="Add"><MemberSignature Language="C#" Value="public void Add (string name, object value);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="name" Type="System.String" /><Parameter Name="value" Type="System.Object" /></Parameters><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Adds a new object to the <see cref="T:System.Web.HttpApplicationState" /> collection.</para></summary><param name="name"><attribution license="cc4" from="Microsoft" modified="false" />The name of the object to be added to the collection. </param><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />The value of the object. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="AllKeys"><MemberSignature Language="C#" Value="public string[] AllKeys { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.String[]</ReturnType></ReturnValue><Docs><value>To be added: an object of type 'string []'</value><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the access keys in the <see cref="T:System.Web.HttpApplicationState" /> collection.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Clear"><MemberSignature Language="C#" Value="public void Clear ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Removes all objects from an <see cref="T:System.Web.HttpApplicationState" /> collection.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Contents"><MemberSignature Language="C#" Value="public System.Web.HttpApplicationState Contents { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Web.HttpApplicationState</ReturnType></ReturnValue><Docs><value>To be added: an object of type 'HttpApplicationState'</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This property provides compatibility with earlier versions of ASP.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a reference to the <see cref="T:System.Web.HttpApplicationState" /> object.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Count"><MemberSignature Language="C#" Value="public override int Count { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Parameters /><Docs><value>a <see cref="T:System.Int32" /></value><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the number of objects in the <see cref="T:System.Web.HttpApplicationState" /> collection.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Get"><MemberSignature Language="C#" Value="public object Get (int index);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters><Parameter Name="index" Type="System.Int32" /></Parameters><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets an <see cref="T:System.Web.HttpApplicationState" /> object by numerical index.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The object referenced by <paramref name="index" />.</para></returns><param name="index"><attribution license="cc4" from="Microsoft" modified="false" />The index of the application state object. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Get"><MemberSignature Language="C#" Value="public object Get (string name);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters><Parameter Name="name" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The following example returns an object named MyAppVar1 from the <see cref="T:System.Web.HttpApplicationState" /> collection of the intrinsic <see cref="P:System.Web.HttpContext.Application" /> object and copies it to a new object variable.</para><code>Dim MyObject As Object
MyObject = Application.Get("MyAppVar1")</code><code>Object MyObject;
MyObject = Application.Get("MyAppVar1");</code></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets an <see cref="T:System.Web.HttpApplicationState" /> object by name.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The object referenced by <paramref name="name" />.</para></returns><param name="name"><attribution license="cc4" from="Microsoft" modified="false" />The name of the object. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="GetKey"><MemberSignature Language="C#" Value="public string GetKey (int index);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Parameters><Parameter Name="index" Type="System.Int32" /></Parameters><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets an <see cref="T:System.Web.HttpApplicationState" /> object name by index.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The name under which the application state object was saved.</para></returns><param name="index"><attribution license="cc4" from="Microsoft" modified="false" />The index of the application state object. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Item"><MemberSignature Language="C#" Value="public object this[int index] { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters><Parameter Name="index" Type="System.Int32" /></Parameters><Docs><param name="index">To be added.</param><summary>To be added.</summary><value>To be added.</value><remarks>To be added.</remarks></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Item"><MemberSignature Language="C#" Value="public object this[string name] { set; get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters><Parameter Name="name" Type="System.String" /></Parameters><Docs><param name="name">To be added: an object of type 'string'</param><summary>To be added</summary><value>To be added: an object of type 'object'</value><remarks>To be added</remarks></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Lock"><MemberSignature Language="C#" Value="public void Lock ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Web.HttpApplicationState" /> class performs automatic locking and unlocking with the <see cref="P:System.Web.HttpApplicationState.AllKeys" /> and <see cref="P:System.Web.HttpApplicationState.Count" /> properties and the <see cref="M:System.Web.HttpApplicationState.Add(System.String,System.Object)" />, <see cref="M:System.Web.HttpApplicationState.Clear" />, <see cref="Overload:System.Web.HttpApplicationState.Get" />, <see cref="M:System.Web.HttpApplicationState.GetKey(System.Int32)" />, <see cref="M:System.Web.HttpApplicationState.Remove(System.String)" />, <see cref="M:System.Web.HttpApplicationState.RemoveAt(System.Int32)" /> and <see cref="M:System.Web.HttpApplicationState.Set(System.String,System.Object)" /> methods. However, explicitly using the <see cref="M:System.Web.HttpApplicationState.Lock" /> and <see cref="M:System.Web.HttpApplicationState.UnLock" /> methods when you have a series of operations may be more efficient.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Locks access to an <see cref="T:System.Web.HttpApplicationState" /> variable to facilitate access synchronization.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Remove"><MemberSignature Language="C#" Value="public void Remove (string name);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="name" Type="System.String" /></Parameters><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Removes the named object from an <see cref="T:System.Web.HttpApplicationState" /> collection.</para></summary><param name="name"><attribution license="cc4" from="Microsoft" modified="false" />The name of the object to be removed from the collection. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="RemoveAll"><MemberSignature Language="C#" Value="public void RemoveAll ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para><see cref="M:System.Web.HttpApplicationState.RemoveAll" /> is an internal call to <see cref="M:System.Web.HttpApplicationState.Clear" />.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Removes all objects from an <see cref="T:System.Web.HttpApplicationState" /> collection.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="RemoveAt"><MemberSignature Language="C#" Value="public void RemoveAt (int index);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="index" Type="System.Int32" /></Parameters><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Removes an <see cref="T:System.Web.HttpApplicationState" /> object from a collection by index.</para></summary><param name="index"><attribution license="cc4" from="Microsoft" modified="false" />The position in the collection of the item to remove. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Set"><MemberSignature Language="C#" Value="public void Set (string name, object value);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="name" Type="System.String" /><Parameter Name="value" Type="System.Object" /></Parameters><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Updates the value of an object in an <see cref="T:System.Web.HttpApplicationState" /> collection.</para></summary><param name="name"><attribution license="cc4" from="Microsoft" modified="false" />The name of the object to be updated. </param><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />The updated value of the object. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="StaticObjects"><MemberSignature Language="C#" Value="public System.Web.HttpStaticObjectsCollection StaticObjects { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Web.HttpStaticObjectsCollection</ReturnType></ReturnValue><Docs><value>To be added: an object of type 'HttpStaticObjectsCollection'</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Application objects are defined in the Global.asax file inside the &lt;object runat="server" scope="Application"&gt; &lt;/object&gt; tags.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets all objects declared by an &lt;object&gt; tag where the scope is set to "Application" within the ASP.NET application.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="UnLock"><MemberSignature Language="C#" Value="public void UnLock ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Web.HttpApplicationState" /> class performs automatic locking and unlocking with the <see cref="P:System.Web.HttpApplicationState.AllKeys" /> and <see cref="P:System.Web.HttpApplicationState.Count" /> properties and the <see cref="M:System.Web.HttpApplicationState.Add(System.String,System.Object)" />, <see cref="M:System.Web.HttpApplicationState.Clear" />, <see cref="Overload:System.Web.HttpApplicationState.Get" />, <see cref="M:System.Web.HttpApplicationState.GetKey(System.Int32)" />, <see cref="M:System.Web.HttpApplicationState.Remove(System.String)" />, <see cref="M:System.Web.HttpApplicationState.RemoveAt(System.Int32)" /> and <see cref="M:System.Web.HttpApplicationState.Set(System.String,System.Object)" /> methods. However, explicitly using the <see cref="M:System.Web.HttpApplicationState.Lock" /> and <see cref="M:System.Web.HttpApplicationState.UnLock" /> methods when you have a series of operations may be more efficient.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Unlocks access to an <see cref="T:System.Web.HttpApplicationState" /> variable to facilitate access synchronization.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member></Members></Type>