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
- AncestorChangedEventArgs.cs
- ServiceCredentialsSecurityTokenManager.cs
- SqlBuilder.cs
- IPCCacheManager.cs
- Signature.cs
- SortFieldComparer.cs
- Validator.cs
- HWStack.cs
- HelpEvent.cs
- RangeValidator.cs
- PriorityBindingExpression.cs
- WebBrowserPermission.cs
- HierarchicalDataSourceControl.cs
- OutputScopeManager.cs
- ListControlDesigner.cs
- LassoSelectionBehavior.cs
- SafeViewOfFileHandle.cs
- IpcServerChannel.cs
- AnnotationAuthorChangedEventArgs.cs
- SchemaCompiler.cs
- FunctionQuery.cs
- KeyProperty.cs
- EntityParameterCollection.cs
- PropertyToken.cs
- HashHelper.cs
- ScrollChrome.cs
- WebConfigurationHost.cs
- FirewallWrapper.cs
- EntityDataSourceStatementEditor.cs
- XamlFxTrace.cs
- ProfileModule.cs
- SimpleFieldTemplateFactory.cs
- ProtocolsConfigurationEntry.cs
- UrlMappingsModule.cs
- ImagingCache.cs
- Model3D.cs
- ServiceOperationParameter.cs
- SessionParameter.cs
- InvalidateEvent.cs
- CultureTable.cs
- HttpCacheVaryByContentEncodings.cs
- DbReferenceCollection.cs
- MetadataArtifactLoader.cs
- MetricEntry.cs
- Internal.cs
- EntityClassGenerator.cs
- _ConnectStream.cs
- SetUserLanguageRequest.cs
- HtmlInputPassword.cs
- NonBatchDirectoryCompiler.cs
- Converter.cs
- IBuiltInEvidence.cs
- ReadOnlyHierarchicalDataSource.cs
- MsmqPoisonMessageException.cs
- ApplicationDirectory.cs
- Window.cs
- MdImport.cs
- WebPartVerb.cs
- TextTreeRootNode.cs
- SecurityAttributeGenerationHelper.cs
- ListView.cs
- DataConnectionHelper.cs
- PassportAuthentication.cs
- RijndaelManagedTransform.cs
- PackageDigitalSignatureManager.cs
- VectorCollection.cs
- RotateTransform.cs
- PageAsyncTaskManager.cs
- ColorContext.cs
- KnowledgeBase.cs
- DataGridViewCellStyle.cs
- DelegatedStream.cs
- NeutralResourcesLanguageAttribute.cs
- WebAdminConfigurationHelper.cs
- DataGridDesigner.cs
- CodePrimitiveExpression.cs
- CodePageUtils.cs
- WebPartZoneBase.cs
- ComponentCommands.cs
- FormParameter.cs
- DuplicateMessageDetector.cs
- Filter.cs
- PartitionerStatic.cs
- WCFBuildProvider.cs
- UnSafeCharBuffer.cs
- ExecutorLocksHeldException.cs
- WebServiceErrorEvent.cs
- cookiecollection.cs
- OpCodes.cs
- SendingRequestEventArgs.cs
- ToolStripOverflow.cs
- NotSupportedException.cs
- GeometryDrawing.cs
- DNS.cs
- SqlUDTStorage.cs
- LineServicesCallbacks.cs
- WebHeaderCollection.cs
- XmlHierarchyData.cs
- Reference.cs
- KeyNotFoundException.cs