Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Routing / RequestContext.cs / 1305376 / RequestContext.cs
namespace System.Web.Routing {
using System.Runtime.CompilerServices;
using System.Diagnostics.CodeAnalysis;
[TypeForwardedFrom("System.Web.Routing, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
public class RequestContext {
public RequestContext() {
}
[SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors",
Justification = "The virtual property setters are only to support mocking frameworks, in which case this constructor shouldn't be called anyway.")]
public RequestContext(HttpContextBase httpContext, RouteData routeData) {
if (httpContext == null) {
throw new ArgumentNullException("httpContext");
}
if (routeData == null) {
throw new ArgumentNullException("routeData");
}
HttpContext = httpContext;
RouteData = routeData;
}
public virtual HttpContextBase HttpContext {
get;
set;
}
public virtual RouteData RouteData {
get;
set;
}
}
}
// 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
- Matrix3D.cs
- bindurihelper.cs
- RegexCharClass.cs
- FilterableAttribute.cs
- RoleManagerModule.cs
- ContextConfiguration.cs
- XmlnsCache.cs
- DbConnectionPoolGroup.cs
- DocumentPageTextView.cs
- AggregateException.cs
- ProcessHostFactoryHelper.cs
- ContractTypeNameElement.cs
- IItemContainerGenerator.cs
- Span.cs
- HtmlForm.cs
- DateTimeConverter.cs
- HttpResponse.cs
- Margins.cs
- XmlUtil.cs
- ProviderCommandInfoUtils.cs
- GenericXmlSecurityToken.cs
- ParserHooks.cs
- LockRenewalTask.cs
- NativeDirectoryServicesQueryAPIs.cs
- DataGridViewTextBoxEditingControl.cs
- Application.cs
- CultureInfoConverter.cs
- SelectionProviderWrapper.cs
- CreationContext.cs
- ProfileProvider.cs
- HitTestWithGeometryDrawingContextWalker.cs
- LineBreak.cs
- DataSourceNameHandler.cs
- PlatformNotSupportedException.cs
- DataSourceGeneratorException.cs
- TransactionScopeDesigner.cs
- DecoderFallback.cs
- ServiceElementCollection.cs
- EventTrigger.cs
- Floater.cs
- TimeoutConverter.cs
- ASCIIEncoding.cs
- WebBrowserProgressChangedEventHandler.cs
- ReferentialConstraint.cs
- WebPartVerb.cs
- AssertSection.cs
- WebMessageFormatHelper.cs
- ResourceDescriptionAttribute.cs
- ISCIIEncoding.cs
- UriWriter.cs
- ConfigUtil.cs
- StateMachineWorkflowDesigner.cs
- EventDescriptor.cs
- StateWorkerRequest.cs
- HostDesigntimeLicenseContext.cs
- HotCommands.cs
- StylusPlugInCollection.cs
- TextServicesDisplayAttributePropertyRanges.cs
- MarkupCompilePass2.cs
- DelegatedStream.cs
- ScrollEventArgs.cs
- SQLSingle.cs
- OpenFileDialog.cs
- GridLength.cs
- AppLevelCompilationSectionCache.cs
- DataRowCollection.cs
- FileDialogCustomPlacesCollection.cs
- DataGridViewToolTip.cs
- ProcessDesigner.cs
- WindowsImpersonationContext.cs
- BamlRecordHelper.cs
- ProcessStartInfo.cs
- MultipleFilterMatchesException.cs
- TextRangeBase.cs
- UnauthorizedWebPart.cs
- BinHexEncoder.cs
- SizeFConverter.cs
- EmptyImpersonationContext.cs
- ComplusEndpointConfigContainer.cs
- Perspective.cs
- ManagedFilter.cs
- MethodBody.cs
- DeferredReference.cs
- Rect3D.cs
- DiscriminatorMap.cs
- RadioButton.cs
- CryptoStream.cs
- BinaryQueryOperator.cs
- SelectionItemProviderWrapper.cs
- XmlSchemaSimpleContent.cs
- MemberJoinTreeNode.cs
- Vector3DAnimation.cs
- DeferredTextReference.cs
- TypedRowHandler.cs
- TextTrailingCharacterEllipsis.cs
- ClearCollection.cs
- XmlHierarchyData.cs
- GridEntryCollection.cs
- ProfileGroupSettingsCollection.cs
- ConnectionManager.cs