Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Cache / HeaderElement.cs / 1305376 / HeaderElement.cs
using System; using System.Security.Permissions; using System.Web; using System.Web.Caching; namespace System.Web.Caching { // A header element holds the header name and value. [Serializable] public sealed class HeaderElement { private string _name; private string _value; public string Name { get { return _name; } } public string Value { get { return _value; } } private HeaderElement() { } // hide default constructor public HeaderElement(string name, string value) { if (name == null) throw new ArgumentNullException("name"); if (value == null) throw new ArgumentNullException("value"); _name = name; _value = value; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CodeTypeMember.cs
- GZipStream.cs
- ToolStripScrollButton.cs
- InternalResources.cs
- TextRangeEditLists.cs
- XpsResourcePolicy.cs
- ClientFormsIdentity.cs
- FtpCachePolicyElement.cs
- Code.cs
- Clock.cs
- ControllableStoryboardAction.cs
- DebugView.cs
- DictionaryEntry.cs
- CodeAttributeArgument.cs
- XmlWriterTraceListener.cs
- SimpleTableProvider.cs
- XmlLanguage.cs
- DbMetaDataFactory.cs
- ControlIdConverter.cs
- OleDbWrapper.cs
- ToolStripGrip.cs
- RemotingServices.cs
- BaseAddressPrefixFilterElement.cs
- FloaterParagraph.cs
- IpcPort.cs
- XmlILIndex.cs
- Int32Animation.cs
- InternalTransaction.cs
- TagPrefixCollection.cs
- FixedSOMTextRun.cs
- SafeFreeMibTable.cs
- SoapUnknownHeader.cs
- Util.cs
- CompilationLock.cs
- Point3DConverter.cs
- SmiSettersStream.cs
- TabletDevice.cs
- PeerTransportSecuritySettings.cs
- TypeToken.cs
- XmlSchemaInfo.cs
- DrawingImage.cs
- Slider.cs
- ProcessModule.cs
- Int32CollectionConverter.cs
- DataGrid.cs
- SearchForVirtualItemEventArgs.cs
- ScriptControlManager.cs
- GeometryDrawing.cs
- DataGridSortCommandEventArgs.cs
- SiteMapProvider.cs
- FixedFlowMap.cs
- RelationshipNavigation.cs
- SystemDropShadowChrome.cs
- TimeSpanMinutesConverter.cs
- IRCollection.cs
- WebHttpSecurity.cs
- DesignerDataSchemaClass.cs
- SqlLiftIndependentRowExpressions.cs
- Buffer.cs
- Site.cs
- HttpPostedFileWrapper.cs
- OracleParameterBinding.cs
- TextTreeObjectNode.cs
- DataGridViewCellValueEventArgs.cs
- InternalsVisibleToAttribute.cs
- CurrentTimeZone.cs
- WindowsStatic.cs
- XPathNavigatorKeyComparer.cs
- OdbcCommandBuilder.cs
- MetadataSource.cs
- newinstructionaction.cs
- QueryCacheKey.cs
- AxisAngleRotation3D.cs
- PathFigureCollection.cs
- PatternMatcher.cs
- EventData.cs
- TemplateAction.cs
- VectorCollectionConverter.cs
- EventWaitHandleSecurity.cs
- InvalidProgramException.cs
- DateTimeValueSerializer.cs
- MD5.cs
- LZCodec.cs
- SevenBitStream.cs
- NamedElement.cs
- UnsafeNativeMethods.cs
- PageCodeDomTreeGenerator.cs
- BigInt.cs
- QueryOperationResponseOfT.cs
- WizardSideBarListControlItemEventArgs.cs
- TextLineResult.cs
- SqlConnectionManager.cs
- MdiWindowListItemConverter.cs
- ContentTextAutomationPeer.cs
- _UriSyntax.cs
- DateTimeOffsetConverter.cs
- SelectedDatesCollection.cs
- ContextMenu.cs
- ImageListImageEditor.cs
- ClientSettingsSection.cs