Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Abstractions / HttpRequestBase.cs / 1305376 / HttpRequestBase.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web { using System.Collections.Specialized; using System.Diagnostics.CodeAnalysis; using System.IO; using System.Security.Principal; using System.Text; using System.Security.Authentication.ExtendedProtection; using System.Web.Routing; using System.Runtime.CompilerServices; [TypeForwardedFrom("System.Web.Abstractions, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")] public abstract class HttpRequestBase { [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays", Justification = "Matches HttpRequest class")] public virtual String[] AcceptTypes { get { throw new NotImplementedException(); } } public virtual String ApplicationPath { get { throw new NotImplementedException(); } } [SuppressMessage("Microsoft.Naming", "CA1706:ShortAcronymsShouldBeUppercase", MessageId="ID")] [SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "ID")] public virtual String AnonymousID { get { throw new NotImplementedException(); } } public virtual String AppRelativeCurrentExecutionFilePath { get { throw new NotImplementedException(); } } public virtual HttpBrowserCapabilitiesBase Browser { get { throw new NotImplementedException(); } } public virtual ChannelBinding HttpChannelBinding { get { throw new NotImplementedException(); } } public virtual HttpClientCertificate ClientCertificate { get { throw new NotImplementedException(); } } public virtual Encoding ContentEncoding { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public virtual int ContentLength { get { throw new NotImplementedException(); } } public virtual String ContentType { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public virtual HttpCookieCollection Cookies { get { throw new NotImplementedException(); } } public virtual String CurrentExecutionFilePath { get { throw new NotImplementedException(); } } public virtual String FilePath { get { throw new NotImplementedException(); } } public virtual HttpFileCollectionBase Files { get { throw new NotImplementedException(); } } public virtual Stream Filter { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public virtual NameValueCollection Form { get { throw new NotImplementedException(); } } public virtual String HttpMethod { get { throw new NotImplementedException(); } } public virtual Stream InputStream { get { throw new NotImplementedException(); } } public virtual bool IsAuthenticated { get { throw new NotImplementedException(); } } public virtual bool IsLocal { get { throw new NotImplementedException(); } } public virtual bool IsSecureConnection { get { throw new NotImplementedException(); } } [SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly", Justification = "Matches HttpRequest class")] public virtual WindowsIdentity LogonUserIdentity { get { throw new NotImplementedException(); } } [SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", Justification = "Matches HttpRequest class")] public virtual NameValueCollection Params { get { throw new NotImplementedException(); } } public virtual String Path { get { throw new NotImplementedException(); } } public virtual String PathInfo { get { throw new NotImplementedException(); } } public virtual String PhysicalApplicationPath { get { throw new NotImplementedException(); } } public virtual String PhysicalPath { get { throw new NotImplementedException(); } } [SuppressMessage("Microsoft.Design", "CA1056:UriPropertiesShouldNotBeStrings", Justification = "Matches HttpRequest class")] public virtual String RawUrl { get { throw new NotImplementedException(); } } public virtual RequestContext RequestContext { get { throw new NotImplementedException(); } internal set { throw new NotImplementedException(); } } public virtual String RequestType { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public virtual NameValueCollection ServerVariables { get { throw new NotImplementedException(); } } public virtual int TotalBytes { get { throw new NotImplementedException(); } } public virtual Uri Url { get { throw new NotImplementedException(); } } public virtual Uri UrlReferrer { get { throw new NotImplementedException(); } } public virtual String UserAgent { get { throw new NotImplementedException(); } } [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays", Justification = "Matches HttpRequest class")] public virtual String[] UserLanguages { get { throw new NotImplementedException(); } } public virtual String UserHostAddress { get { throw new NotImplementedException(); } } public virtual String UserHostName { get { throw new NotImplementedException(); } } public virtual NameValueCollection Headers { get { throw new NotImplementedException(); } } public virtual NameValueCollection QueryString { get { throw new NotImplementedException(); } } public virtual String this[String key] { get { throw new NotImplementedException(); } } public virtual byte[] BinaryRead(int count) { throw new NotImplementedException(); } public virtual int[] MapImageCoordinates(String imageFieldName) { throw new NotImplementedException(); } public virtual String MapPath(String virtualPath) { throw new NotImplementedException(); } public virtual String MapPath(string virtualPath, string baseVirtualDir, bool allowCrossAppMapping) { throw new NotImplementedException(); } public virtual void ValidateInput() { throw new NotImplementedException(); } [SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly", Justification = "Matches HttpRequest class")] public virtual void SaveAs(String filename, bool includeHeaders) { throw new NotImplementedException(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web { using System.Collections.Specialized; using System.Diagnostics.CodeAnalysis; using System.IO; using System.Security.Principal; using System.Text; using System.Security.Authentication.ExtendedProtection; using System.Web.Routing; using System.Runtime.CompilerServices; [TypeForwardedFrom("System.Web.Abstractions, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")] public abstract class HttpRequestBase { [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays", Justification = "Matches HttpRequest class")] public virtual String[] AcceptTypes { get { throw new NotImplementedException(); } } public virtual String ApplicationPath { get { throw new NotImplementedException(); } } [SuppressMessage("Microsoft.Naming", "CA1706:ShortAcronymsShouldBeUppercase", MessageId="ID")] [SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "ID")] public virtual String AnonymousID { get { throw new NotImplementedException(); } } public virtual String AppRelativeCurrentExecutionFilePath { get { throw new NotImplementedException(); } } public virtual HttpBrowserCapabilitiesBase Browser { get { throw new NotImplementedException(); } } public virtual ChannelBinding HttpChannelBinding { get { throw new NotImplementedException(); } } public virtual HttpClientCertificate ClientCertificate { get { throw new NotImplementedException(); } } public virtual Encoding ContentEncoding { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public virtual int ContentLength { get { throw new NotImplementedException(); } } public virtual String ContentType { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public virtual HttpCookieCollection Cookies { get { throw new NotImplementedException(); } } public virtual String CurrentExecutionFilePath { get { throw new NotImplementedException(); } } public virtual String FilePath { get { throw new NotImplementedException(); } } public virtual HttpFileCollectionBase Files { get { throw new NotImplementedException(); } } public virtual Stream Filter { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public virtual NameValueCollection Form { get { throw new NotImplementedException(); } } public virtual String HttpMethod { get { throw new NotImplementedException(); } } public virtual Stream InputStream { get { throw new NotImplementedException(); } } public virtual bool IsAuthenticated { get { throw new NotImplementedException(); } } public virtual bool IsLocal { get { throw new NotImplementedException(); } } public virtual bool IsSecureConnection { get { throw new NotImplementedException(); } } [SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly", Justification = "Matches HttpRequest class")] public virtual WindowsIdentity LogonUserIdentity { get { throw new NotImplementedException(); } } [SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", Justification = "Matches HttpRequest class")] public virtual NameValueCollection Params { get { throw new NotImplementedException(); } } public virtual String Path { get { throw new NotImplementedException(); } } public virtual String PathInfo { get { throw new NotImplementedException(); } } public virtual String PhysicalApplicationPath { get { throw new NotImplementedException(); } } public virtual String PhysicalPath { get { throw new NotImplementedException(); } } [SuppressMessage("Microsoft.Design", "CA1056:UriPropertiesShouldNotBeStrings", Justification = "Matches HttpRequest class")] public virtual String RawUrl { get { throw new NotImplementedException(); } } public virtual RequestContext RequestContext { get { throw new NotImplementedException(); } internal set { throw new NotImplementedException(); } } public virtual String RequestType { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public virtual NameValueCollection ServerVariables { get { throw new NotImplementedException(); } } public virtual int TotalBytes { get { throw new NotImplementedException(); } } public virtual Uri Url { get { throw new NotImplementedException(); } } public virtual Uri UrlReferrer { get { throw new NotImplementedException(); } } public virtual String UserAgent { get { throw new NotImplementedException(); } } [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays", Justification = "Matches HttpRequest class")] public virtual String[] UserLanguages { get { throw new NotImplementedException(); } } public virtual String UserHostAddress { get { throw new NotImplementedException(); } } public virtual String UserHostName { get { throw new NotImplementedException(); } } public virtual NameValueCollection Headers { get { throw new NotImplementedException(); } } public virtual NameValueCollection QueryString { get { throw new NotImplementedException(); } } public virtual String this[String key] { get { throw new NotImplementedException(); } } public virtual byte[] BinaryRead(int count) { throw new NotImplementedException(); } public virtual int[] MapImageCoordinates(String imageFieldName) { throw new NotImplementedException(); } public virtual String MapPath(String virtualPath) { throw new NotImplementedException(); } public virtual String MapPath(string virtualPath, string baseVirtualDir, bool allowCrossAppMapping) { throw new NotImplementedException(); } public virtual void ValidateInput() { throw new NotImplementedException(); } [SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly", Justification = "Matches HttpRequest class")] public virtual void SaveAs(String filename, bool includeHeaders) { throw new NotImplementedException(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CommandEventArgs.cs
- WebPartTracker.cs
- ProviderCollection.cs
- WindowProviderWrapper.cs
- SqlAliasesReferenced.cs
- BaseTreeIterator.cs
- ItemCheckEvent.cs
- StringPropertyBuilder.cs
- AlternateViewCollection.cs
- QuotaThrottle.cs
- ObjectIDGenerator.cs
- FontCollection.cs
- ServiceDescription.cs
- XmlQualifiedName.cs
- SQLChars.cs
- DropDownList.cs
- IIS7WorkerRequest.cs
- IsolatedStorage.cs
- StorageModelBuildProvider.cs
- ContentWrapperAttribute.cs
- DbConnectionPoolGroupProviderInfo.cs
- ETagAttribute.cs
- PartManifestEntry.cs
- BitmapMetadataBlob.cs
- DragStartedEventArgs.cs
- WebServiceResponseDesigner.cs
- ApplicationFileParser.cs
- XmlnsPrefixAttribute.cs
- SemanticResolver.cs
- LineServicesRun.cs
- MergePropertyDescriptor.cs
- NetNamedPipeBindingCollectionElement.cs
- HighlightComponent.cs
- XmlSchemaDatatype.cs
- HtmlTitle.cs
- ListCollectionView.cs
- PageContentAsyncResult.cs
- EmbeddedMailObjectCollectionEditor.cs
- HttpClientCertificate.cs
- ArrayConverter.cs
- GiveFeedbackEvent.cs
- ContainerVisual.cs
- BrowserCapabilitiesFactory.cs
- EntityContainerRelationshipSet.cs
- XmlAttributeHolder.cs
- WorkflowServiceOperationListItem.cs
- UpdateProgress.cs
- OleDbError.cs
- SmiEventSink.cs
- IntegerCollectionEditor.cs
- NullableFloatSumAggregationOperator.cs
- TextStore.cs
- FunctionDetailsReader.cs
- ResponseStream.cs
- Attributes.cs
- ExecutionEngineException.cs
- XPathEmptyIterator.cs
- ActivityStatusChangeEventArgs.cs
- XsdDateTime.cs
- ApplicationCommands.cs
- ListViewInsertedEventArgs.cs
- AppSettingsReader.cs
- HierarchicalDataBoundControl.cs
- DynamicHyperLink.cs
- SamlAdvice.cs
- SpellCheck.cs
- FormViewUpdateEventArgs.cs
- TableLayoutPanelCellPosition.cs
- HiddenFieldPageStatePersister.cs
- IconEditor.cs
- AliasExpr.cs
- WSFederationHttpSecurity.cs
- TabControlEvent.cs
- MarkupProperty.cs
- NativeCompoundFileAPIs.cs
- KeyFrames.cs
- XPathExpr.cs
- MDIControlStrip.cs
- CommandID.cs
- DelegatedStream.cs
- ImageField.cs
- ProfileBuildProvider.cs
- SoapClientMessage.cs
- altserialization.cs
- ObsoleteAttribute.cs
- SizeConverter.cs
- WindowVisualStateTracker.cs
- Dictionary.cs
- ColorInterpolationModeValidation.cs
- EnumBuilder.cs
- TypeElement.cs
- MemoryMappedViewStream.cs
- MaterialCollection.cs
- IISMapPath.cs
- InputLanguageCollection.cs
- ActivityExecutionFilter.cs
- DBSchemaTable.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- LinkButton.cs
- PeerNameRecordCollection.cs