Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Abstractions / HttpResponseBase.cs / 1503810 / HttpResponseBase.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web {
using System.Collections;
using System.Collections.Specialized;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.Text;
using System.Web.Caching;
using System.Web.Routing;
using System.Runtime.CompilerServices;
[TypeForwardedFrom("System.Web.Abstractions, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
public abstract class HttpResponseBase {
public virtual bool Buffer {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual bool BufferOutput {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual HttpCachePolicyBase Cache {
get {
throw new NotImplementedException();
}
}
public virtual string CacheControl {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly",
Justification = "Matches HttpResponse class")]
public virtual String Charset {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual Encoding ContentEncoding {
set {
throw new NotImplementedException();
}
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 int Expires {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual DateTime ExpiresAbsolute {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual Stream Filter {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual NameValueCollection Headers {
get {
throw new NotImplementedException();
}
}
public virtual Encoding HeaderEncoding {
set {
throw new NotImplementedException();
}
get {
throw new NotImplementedException();
}
}
public virtual bool IsClientConnected {
get {
throw new NotImplementedException();
}
}
public virtual bool IsRequestBeingRedirected {
get {
throw new NotImplementedException();
}
}
public virtual TextWriter Output {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual Stream OutputStream {
get {
throw new NotImplementedException();
}
}
public virtual String RedirectLocation {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual string Status {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual int StatusCode {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual String StatusDescription {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual int SubStatusCode {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual bool SuppressContent {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual bool TrySkipIisCustomErrors {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual void AddCacheItemDependency(string cacheKey) {
throw new NotImplementedException();
}
public virtual void AddCacheItemDependencies(ArrayList cacheKeys) {
throw new NotImplementedException();
}
public virtual void AddCacheItemDependencies(string[] cacheKeys) {
throw new NotImplementedException();
}
public virtual void AddCacheDependency(params CacheDependency[] dependencies) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void AddFileDependency(String filename) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void AddFileDependencies(ArrayList filenames) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void AddFileDependencies(string[] filenames) {
throw new NotImplementedException();
}
public virtual void AddHeader(String name, String value) {
throw new NotImplementedException();
}
public virtual void AppendCookie(HttpCookie cookie) {
throw new NotImplementedException();
}
public virtual void AppendHeader(String name, String value) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void AppendToLog(String param) {
throw new NotImplementedException();
}
public virtual string ApplyAppPathModifier(string virtualPath) {
throw new NotImplementedException();
}
public virtual void BinaryWrite(byte[] buffer) {
throw new NotImplementedException();
}
public virtual void Clear() {
throw new NotImplementedException();
}
public virtual void ClearContent() {
throw new NotImplementedException();
}
public virtual void ClearHeaders() {
throw new NotImplementedException();
}
public virtual void Close() {
throw new NotImplementedException();
}
public virtual void DisableKernelCache() {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "End",
Justification = "Matches HttpResponse class")]
public virtual void End() {
throw new NotImplementedException();
}
public virtual void Flush() {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void Pics(String value) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings",
Justification = "Matches HttpResponse class")]
public virtual void Redirect(String url) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings",
Justification = "Matches HttpResponse class")]
public virtual void Redirect(String url, bool endResponse) {
throw new NotImplementedException();
}
public virtual void RedirectToRoute(object routeValues) {
throw new NotImplementedException();
}
public virtual void RedirectToRoute(string routeName) {
throw new NotImplementedException();
}
public virtual void RedirectToRoute(RouteValueDictionary routeValues) {
throw new NotImplementedException();
}
public virtual void RedirectToRoute(string routeName, object routeValues) {
throw new NotImplementedException();
}
public virtual void RedirectToRoute(string routeName, RouteValueDictionary routeValues) {
throw new NotImplementedException();
}
public virtual void RedirectToRoutePermanent(object routeValues) {
throw new NotImplementedException();
}
public virtual void RedirectToRoutePermanent(string routeName) {
throw new NotImplementedException();
}
public virtual void RedirectToRoutePermanent(RouteValueDictionary routeValues) {
throw new NotImplementedException();
}
public virtual void RedirectToRoutePermanent(string routeName, object routeValues) {
throw new NotImplementedException();
}
public virtual void RedirectToRoutePermanent(string routeName, RouteValueDictionary routeValues) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings",
Justification = "Matches HttpResponse class")]
public virtual void RedirectPermanent(String url) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings",
Justification = "Matches HttpResponse class")]
public virtual void RedirectPermanent(String url, bool endResponse) {
throw new NotImplementedException();
}
public virtual void RemoveOutputCacheItem(string path) {
throw new NotImplementedException();
}
public virtual void RemoveOutputCacheItem(string path, string providerName) {
throw new NotImplementedException();
}
public virtual void SetCookie(HttpCookie cookie) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void TransmitFile(string filename) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void TransmitFile(string filename, long offset, long length) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void Write(char ch) {
throw new NotImplementedException();
}
public virtual void Write(char[] buffer, int index, int count) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1720:IdentifiersShouldNotContainTypeNames", MessageId = "obj",
Justification = "Matches HttpResponse class")]
public virtual void Write(Object obj) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void Write(string s) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void WriteFile(String filename) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void WriteFile(String filename, bool readIntoMemory) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void WriteFile(String filename, long offset, long size) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void WriteFile(IntPtr fileHandle, long offset, long size) {
throw new NotImplementedException();
}
public virtual void WriteSubstitution(HttpResponseSubstitutionCallback callback) {
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;
using System.Collections.Specialized;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.Text;
using System.Web.Caching;
using System.Web.Routing;
using System.Runtime.CompilerServices;
[TypeForwardedFrom("System.Web.Abstractions, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
public abstract class HttpResponseBase {
public virtual bool Buffer {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual bool BufferOutput {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual HttpCachePolicyBase Cache {
get {
throw new NotImplementedException();
}
}
public virtual string CacheControl {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly",
Justification = "Matches HttpResponse class")]
public virtual String Charset {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual Encoding ContentEncoding {
set {
throw new NotImplementedException();
}
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 int Expires {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual DateTime ExpiresAbsolute {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual Stream Filter {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual NameValueCollection Headers {
get {
throw new NotImplementedException();
}
}
public virtual Encoding HeaderEncoding {
set {
throw new NotImplementedException();
}
get {
throw new NotImplementedException();
}
}
public virtual bool IsClientConnected {
get {
throw new NotImplementedException();
}
}
public virtual bool IsRequestBeingRedirected {
get {
throw new NotImplementedException();
}
}
public virtual TextWriter Output {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual Stream OutputStream {
get {
throw new NotImplementedException();
}
}
public virtual String RedirectLocation {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual string Status {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual int StatusCode {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual String StatusDescription {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual int SubStatusCode {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual bool SuppressContent {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual bool TrySkipIisCustomErrors {
get {
throw new NotImplementedException();
}
set {
throw new NotImplementedException();
}
}
public virtual void AddCacheItemDependency(string cacheKey) {
throw new NotImplementedException();
}
public virtual void AddCacheItemDependencies(ArrayList cacheKeys) {
throw new NotImplementedException();
}
public virtual void AddCacheItemDependencies(string[] cacheKeys) {
throw new NotImplementedException();
}
public virtual void AddCacheDependency(params CacheDependency[] dependencies) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void AddFileDependency(String filename) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void AddFileDependencies(ArrayList filenames) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void AddFileDependencies(string[] filenames) {
throw new NotImplementedException();
}
public virtual void AddHeader(String name, String value) {
throw new NotImplementedException();
}
public virtual void AppendCookie(HttpCookie cookie) {
throw new NotImplementedException();
}
public virtual void AppendHeader(String name, String value) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void AppendToLog(String param) {
throw new NotImplementedException();
}
public virtual string ApplyAppPathModifier(string virtualPath) {
throw new NotImplementedException();
}
public virtual void BinaryWrite(byte[] buffer) {
throw new NotImplementedException();
}
public virtual void Clear() {
throw new NotImplementedException();
}
public virtual void ClearContent() {
throw new NotImplementedException();
}
public virtual void ClearHeaders() {
throw new NotImplementedException();
}
public virtual void Close() {
throw new NotImplementedException();
}
public virtual void DisableKernelCache() {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "End",
Justification = "Matches HttpResponse class")]
public virtual void End() {
throw new NotImplementedException();
}
public virtual void Flush() {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void Pics(String value) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings",
Justification = "Matches HttpResponse class")]
public virtual void Redirect(String url) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings",
Justification = "Matches HttpResponse class")]
public virtual void Redirect(String url, bool endResponse) {
throw new NotImplementedException();
}
public virtual void RedirectToRoute(object routeValues) {
throw new NotImplementedException();
}
public virtual void RedirectToRoute(string routeName) {
throw new NotImplementedException();
}
public virtual void RedirectToRoute(RouteValueDictionary routeValues) {
throw new NotImplementedException();
}
public virtual void RedirectToRoute(string routeName, object routeValues) {
throw new NotImplementedException();
}
public virtual void RedirectToRoute(string routeName, RouteValueDictionary routeValues) {
throw new NotImplementedException();
}
public virtual void RedirectToRoutePermanent(object routeValues) {
throw new NotImplementedException();
}
public virtual void RedirectToRoutePermanent(string routeName) {
throw new NotImplementedException();
}
public virtual void RedirectToRoutePermanent(RouteValueDictionary routeValues) {
throw new NotImplementedException();
}
public virtual void RedirectToRoutePermanent(string routeName, object routeValues) {
throw new NotImplementedException();
}
public virtual void RedirectToRoutePermanent(string routeName, RouteValueDictionary routeValues) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings",
Justification = "Matches HttpResponse class")]
public virtual void RedirectPermanent(String url) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings",
Justification = "Matches HttpResponse class")]
public virtual void RedirectPermanent(String url, bool endResponse) {
throw new NotImplementedException();
}
public virtual void RemoveOutputCacheItem(string path) {
throw new NotImplementedException();
}
public virtual void RemoveOutputCacheItem(string path, string providerName) {
throw new NotImplementedException();
}
public virtual void SetCookie(HttpCookie cookie) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void TransmitFile(string filename) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void TransmitFile(string filename, long offset, long length) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void Write(char ch) {
throw new NotImplementedException();
}
public virtual void Write(char[] buffer, int index, int count) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1720:IdentifiersShouldNotContainTypeNames", MessageId = "obj",
Justification = "Matches HttpResponse class")]
public virtual void Write(Object obj) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void Write(string s) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void WriteFile(String filename) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void WriteFile(String filename, bool readIntoMemory) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void WriteFile(String filename, long offset, long size) {
throw new NotImplementedException();
}
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly",
Justification = "Matches HttpResponse class")]
public virtual void WriteFile(IntPtr fileHandle, long offset, long size) {
throw new NotImplementedException();
}
public virtual void WriteSubstitution(HttpResponseSubstitutionCallback callback) {
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
- Nodes.cs
- ImageCodecInfo.cs
- MetadataUtilsSmi.cs
- coordinatorfactory.cs
- HashCodeCombiner.cs
- ListView.cs
- QilValidationVisitor.cs
- WebHttpBindingElement.cs
- ServiceContractAttribute.cs
- DefaultEventAttribute.cs
- XmlSchemaGroupRef.cs
- PassportAuthentication.cs
- FilePrompt.cs
- DocumentPageView.cs
- HttpRequestTraceRecord.cs
- GridViewUpdateEventArgs.cs
- PrtTicket_Public_Simple.cs
- TableLayout.cs
- PropertyConverter.cs
- CatalogPartCollection.cs
- DeviceSpecificDialogCachedState.cs
- OutputCacheModule.cs
- MsmqActivation.cs
- GrowingArray.cs
- TableDesigner.cs
- LinqDataSourceStatusEventArgs.cs
- WebPartConnection.cs
- GlyphingCache.cs
- RuntimeArgumentHandle.cs
- ErrorTableItemStyle.cs
- DecimalKeyFrameCollection.cs
- Context.cs
- Oid.cs
- PeerNameRegistration.cs
- XmlQualifiedNameTest.cs
- ExclusiveNamedPipeTransportManager.cs
- HttpResponseBase.cs
- UriExt.cs
- DataBindingExpressionBuilder.cs
- TriggerAction.cs
- DataGridViewRowPrePaintEventArgs.cs
- SafeNativeMethods.cs
- UTF32Encoding.cs
- RequestSecurityTokenResponseCollection.cs
- Storyboard.cs
- ElementProxy.cs
- SchemaSetCompiler.cs
- ErrorFormatter.cs
- Int32RectValueSerializer.cs
- RunClient.cs
- CompositeDispatchFormatter.cs
- AssociationTypeEmitter.cs
- ClrProviderManifest.cs
- Size3DConverter.cs
- PnrpPermission.cs
- ProxyGenerationError.cs
- WorkflowItemsPresenter.cs
- ObjectStateManager.cs
- DbMetaDataCollectionNames.cs
- RuntimeEnvironment.cs
- CodeDefaultValueExpression.cs
- DesignBinding.cs
- Assembly.cs
- SpellerStatusTable.cs
- AuthenticateEventArgs.cs
- CompilationUtil.cs
- DiscoveryProxy.cs
- ExpressionPrefixAttribute.cs
- StorageConditionPropertyMapping.cs
- Wow64ConfigurationLoader.cs
- AnnotationService.cs
- WindowsListViewGroup.cs
- GlobalizationAssembly.cs
- XmlDataImplementation.cs
- InfocardInteractiveChannelInitializer.cs
- EntityCommand.cs
- XmlTextReader.cs
- X509ThumbprintKeyIdentifierClause.cs
- Win32NamedPipes.cs
- streamingZipPartStream.cs
- ActivityWithResult.cs
- MD5CryptoServiceProvider.cs
- RequestNavigateEventArgs.cs
- UITypeEditor.cs
- EdmProperty.cs
- TreeNodeEventArgs.cs
- XPathException.cs
- EntitySqlQueryBuilder.cs
- CmsInterop.cs
- Duration.cs
- _SSPISessionCache.cs
- HttpDebugHandler.cs
- MethodExecutor.cs
- DataGridViewImageCell.cs
- AxDesigner.cs
- UnmanagedBitmapWrapper.cs
- StringValidatorAttribute.cs
- ImageFormat.cs
- DoubleLinkListEnumerator.cs
- SafeProcessHandle.cs