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
- AnimationLayer.cs
- ActivityWithResultConverter.cs
- path.cs
- StopStoryboard.cs
- HttpConfigurationSystem.cs
- AttachedPropertyBrowsableAttribute.cs
- MetadataFile.cs
- StringCollection.cs
- BinHexEncoder.cs
- XmlBinaryWriterSession.cs
- ClaimSet.cs
- Color.cs
- SupportingTokenChannel.cs
- SafeMILHandleMemoryPressure.cs
- BinaryWriter.cs
- PanelDesigner.cs
- CategoryState.cs
- BamlStream.cs
- TextSelection.cs
- WindowsScrollBar.cs
- LoginDesignerUtil.cs
- PageEventArgs.cs
- ScrollContentPresenter.cs
- MdiWindowListItemConverter.cs
- PackageDigitalSignatureManager.cs
- DefaultWorkflowSchedulerService.cs
- Win32SafeHandles.cs
- ColumnProvider.cs
- MetafileHeader.cs
- Graphics.cs
- ExtentJoinTreeNode.cs
- ReliabilityContractAttribute.cs
- SelectionList.cs
- ServiceOperationViewControl.cs
- WebServiceParameterData.cs
- connectionpool.cs
- VirtualizedCellInfoCollection.cs
- SecurityElement.cs
- AttributedMetaModel.cs
- xdrvalidator.cs
- EntityContainerEntitySet.cs
- VariableExpressionConverter.cs
- SchemaContext.cs
- TargetControlTypeCache.cs
- Trace.cs
- COM2PropertyDescriptor.cs
- SafeRegistryHandle.cs
- QilList.cs
- EllipseGeometry.cs
- ProfileParameter.cs
- EventProvider.cs
- CompilerErrorCollection.cs
- _LazyAsyncResult.cs
- GenericIdentity.cs
- HtmlInputImage.cs
- ListenerUnsafeNativeMethods.cs
- SafeNativeMethodsMilCoreApi.cs
- TagPrefixCollection.cs
- TypeForwardedToAttribute.cs
- Graph.cs
- InternalConfigHost.cs
- PersonalizationProviderCollection.cs
- LineBreak.cs
- RelationshipManager.cs
- EntityRecordInfo.cs
- XmlAttributeOverrides.cs
- ListComponentEditor.cs
- PassportAuthentication.cs
- ToolStripDropDownButton.cs
- ToolBar.cs
- HandleCollector.cs
- EntityDescriptor.cs
- ProcessStartInfo.cs
- PropertyPanel.cs
- EventProxy.cs
- PlaceHolder.cs
- LongTypeConverter.cs
- ContentDefinition.cs
- DynamicFilterExpression.cs
- HandleValueEditor.cs
- WebPartRestoreVerb.cs
- GraphicsContext.cs
- Transform3D.cs
- DescriptionAttribute.cs
- CollectionChangedEventManager.cs
- BuildResult.cs
- RelatedCurrencyManager.cs
- NativeMethods.cs
- XmlHierarchicalEnumerable.cs
- List.cs
- webclient.cs
- Visual3D.cs
- ChangeBlockUndoRecord.cs
- SerializationTrace.cs
- StagingAreaInputItem.cs
- DependencyPropertyKey.cs
- PasswordBoxAutomationPeer.cs
- TimeEnumHelper.cs
- DefaultBinder.cs
- _ContextAwareResult.cs