Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataWeb / Server / System / Data / Services / HandleExceptionArgs.cs / 1 / HandleExceptionArgs.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Provides a class to provide data to the exception handling // process. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services { using System; ///Use this class to customize how exceptions are handled. public class HandleExceptionArgs { #region Private fields. ///Whether the response has already been written out. private readonly bool responseWritten; ///The MIME type used to write the response. private readonly string responseContentType; ///The private Exception exception; ///being handled. Whether a verbose response is appropriate. private bool useVerboseErrors; #endregion Private fields. #region Constructors. ///Initalizes a new /// Theinstance. being handled. /// Whether the response has already been written out. /// The MIME type used to write the response. /// Whether a verbose response is appropriate. internal HandleExceptionArgs(Exception exception, bool responseWritten, string contentType, bool verboseResponse) { this.exception = WebUtil.CheckArgumentNull(exception, "exception"); this.responseWritten = responseWritten; this.responseContentType = contentType; this.useVerboseErrors = verboseResponse; } #endregion Constructors. #region Public properties. /// Gets or sets the ///being handled. This property may be null. public Exception Exception { get { return this.exception; } set { this.exception = value; } } ///Gets the content type for response. public string ResponseContentType { get { return this.responseContentType; } } ///Gets the HTTP status code for the response. public int ResponseStatusCode { get { if (this.exception is DataServiceException) { return ((DataServiceException)this.exception).StatusCode; } else { return 500; // Internal Server Error. } } } ///Gets a value indicating whether the response has already been written out. public bool ResponseWritten { get { return this.responseWritten; } } ///Gets or sets whether a verbose response is appropriate. public bool UseVerboseErrors { get { return this.useVerboseErrors; } set { this.useVerboseErrors = value; } } #endregion Public properties. #region Internal properties. ///The value for the 'Allow' response header. internal string ResponseAllowHeader { get { if (this.exception is DataServiceException) { return ((DataServiceException)this.exception).ResponseAllowHeader; } else { return null; } } } #endregion Internal properties. } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Provides a class to provide data to the exception handling // process. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services { using System; ///Use this class to customize how exceptions are handled. public class HandleExceptionArgs { #region Private fields. ///Whether the response has already been written out. private readonly bool responseWritten; ///The MIME type used to write the response. private readonly string responseContentType; ///The private Exception exception; ///being handled. Whether a verbose response is appropriate. private bool useVerboseErrors; #endregion Private fields. #region Constructors. ///Initalizes a new /// Theinstance. being handled. /// Whether the response has already been written out. /// The MIME type used to write the response. /// Whether a verbose response is appropriate. internal HandleExceptionArgs(Exception exception, bool responseWritten, string contentType, bool verboseResponse) { this.exception = WebUtil.CheckArgumentNull(exception, "exception"); this.responseWritten = responseWritten; this.responseContentType = contentType; this.useVerboseErrors = verboseResponse; } #endregion Constructors. #region Public properties. /// Gets or sets the ///being handled. This property may be null. public Exception Exception { get { return this.exception; } set { this.exception = value; } } ///Gets the content type for response. public string ResponseContentType { get { return this.responseContentType; } } ///Gets the HTTP status code for the response. public int ResponseStatusCode { get { if (this.exception is DataServiceException) { return ((DataServiceException)this.exception).StatusCode; } else { return 500; // Internal Server Error. } } } ///Gets a value indicating whether the response has already been written out. public bool ResponseWritten { get { return this.responseWritten; } } ///Gets or sets whether a verbose response is appropriate. public bool UseVerboseErrors { get { return this.useVerboseErrors; } set { this.useVerboseErrors = value; } } #endregion Public properties. #region Internal properties. ///The value for the 'Allow' response header. internal string ResponseAllowHeader { get { if (this.exception is DataServiceException) { return ((DataServiceException)this.exception).ResponseAllowHeader; } else { return null; } } } #endregion Internal properties. } } // 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
- XpsS0ValidatingLoader.cs
- ParenthesizePropertyNameAttribute.cs
- FixedSOMGroup.cs
- DataGrid.cs
- RsaSecurityToken.cs
- EngineSite.cs
- RemotingException.cs
- StaticFileHandler.cs
- ButtonBaseAutomationPeer.cs
- Column.cs
- DesignerEventService.cs
- OperandQuery.cs
- GeneralTransform2DTo3DTo2D.cs
- SingleTagSectionHandler.cs
- TextElementAutomationPeer.cs
- PerspectiveCamera.cs
- RightsManagementProvider.cs
- NavigationService.cs
- DocumentGridPage.cs
- SqlFormatter.cs
- COM2IDispatchConverter.cs
- BuildProviderUtils.cs
- CriticalExceptions.cs
- UrlPath.cs
- AccessText.cs
- GridSplitterAutomationPeer.cs
- ScaleTransform3D.cs
- VirtualizingPanel.cs
- PageBreakRecord.cs
- MultiDataTrigger.cs
- EventRouteFactory.cs
- SerialPinChanges.cs
- NamedPipeHostedTransportConfiguration.cs
- ContextProperty.cs
- Point4D.cs
- XamlClipboardData.cs
- Panel.cs
- RotateTransform.cs
- Lazy.cs
- ScriptingJsonSerializationSection.cs
- LineVisual.cs
- EtwTrackingBehaviorElement.cs
- HttpResponse.cs
- CodeDefaultValueExpression.cs
- XmlDownloadManager.cs
- DynamicPhysicalDiscoSearcher.cs
- PersonalizationProviderHelper.cs
- FixedSchema.cs
- CommonProperties.cs
- Win32KeyboardDevice.cs
- NegatedConstant.cs
- WebPartTracker.cs
- RegexWriter.cs
- ConfigurationSection.cs
- DateTimeValueSerializerContext.cs
- ServiceBusyException.cs
- IdentityNotMappedException.cs
- StylusPointProperty.cs
- IDictionary.cs
- XmlParserContext.cs
- IPEndPoint.cs
- TextElementEnumerator.cs
- SlotInfo.cs
- GlyphInfoList.cs
- SchemaElementLookUpTable.cs
- GeneralTransform3DCollection.cs
- DataGridViewDataErrorEventArgs.cs
- StringPropertyBuilder.cs
- TableMethodGenerator.cs
- TextElement.cs
- KeyValuePairs.cs
- HeaderUtility.cs
- WCFBuildProvider.cs
- Token.cs
- MeasureItemEvent.cs
- OracleDateTime.cs
- UpDownEvent.cs
- IChannel.cs
- HtmlTableCellCollection.cs
- KeyEvent.cs
- ExceptionRoutedEventArgs.cs
- EastAsianLunisolarCalendar.cs
- SerializationException.cs
- RawStylusActions.cs
- entitydatasourceentitysetnameconverter.cs
- OleDbEnumerator.cs
- AggregateNode.cs
- FlatButtonAppearance.cs
- SynchronizedInputProviderWrapper.cs
- DynamicDataManager.cs
- TableLayoutPanelCellPosition.cs
- Compiler.cs
- StackOverflowException.cs
- SingleBodyParameterMessageFormatter.cs
- FloaterParaClient.cs
- ObjectListItem.cs
- ConfigXmlReader.cs
- FunctionDetailsReader.cs
- EarlyBoundInfo.cs
- TextCompositionManager.cs