Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / 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
- AuthenticatingEventArgs.cs
- WorkflowOperationBehavior.cs
- IISMapPath.cs
- TablePattern.cs
- SqlParameterCollection.cs
- CodeDelegateInvokeExpression.cs
- XmlResolver.cs
- LineBreakRecord.cs
- SqlFacetAttribute.cs
- WebOperationContext.cs
- ValueTable.cs
- TimeoutTimer.cs
- InputReport.cs
- DefaultValueTypeConverter.cs
- DBCSCodePageEncoding.cs
- DbParameterCollectionHelper.cs
- UseLicense.cs
- _StreamFramer.cs
- EntityDataSourceView.cs
- HtmlInputImage.cs
- BitStack.cs
- TemplatedMailWebEventProvider.cs
- DocumentStatusResources.cs
- BrowserCapabilitiesCompiler.cs
- DataControlHelper.cs
- CodeSubDirectory.cs
- X509UI.cs
- DataServiceEntityAttribute.cs
- ValidationUtility.cs
- WebConfigurationHost.cs
- MenuItem.cs
- UnauthorizedWebPart.cs
- KeyConverter.cs
- BeginCreateSecurityTokenRequest.cs
- ConfigPathUtility.cs
- NameValueCollection.cs
- PageCatalogPart.cs
- URI.cs
- BitmapPalette.cs
- TableSectionStyle.cs
- ButtonChrome.cs
- TileModeValidation.cs
- CodeFieldReferenceExpression.cs
- HasCopySemanticsAttribute.cs
- BindableAttribute.cs
- filewebrequest.cs
- ActivityDesigner.cs
- ValidationPropertyAttribute.cs
- Dictionary.cs
- GradientStop.cs
- Pair.cs
- DeferredBinaryDeserializerExtension.cs
- MethodExpr.cs
- MemberMemberBinding.cs
- SymmetricKey.cs
- Rectangle.cs
- DataSet.cs
- ColorConvertedBitmap.cs
- AttributeAction.cs
- WindowsSecurityTokenAuthenticator.cs
- TriggerAction.cs
- MemberPath.cs
- BufferedGraphicsContext.cs
- ChannelManager.cs
- FileCodeGroup.cs
- LineVisual.cs
- Pointer.cs
- CompilationUnit.cs
- HotSpotCollection.cs
- SystemUdpStatistics.cs
- SqlUserDefinedTypeAttribute.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- TaskForm.cs
- ScriptRegistrationManager.cs
- MailAddress.cs
- DescendantBaseQuery.cs
- FormViewCommandEventArgs.cs
- TextServicesContext.cs
- BamlCollectionHolder.cs
- AutomationPeer.cs
- StorageEntityTypeMapping.cs
- ManualResetEventSlim.cs
- ErrorsHelper.cs
- DynamicILGenerator.cs
- LinkDesigner.cs
- MarshalByRefObject.cs
- ToolStripItemClickedEventArgs.cs
- Lookup.cs
- HttpUnhandledOperationInvoker.cs
- AppLevelCompilationSectionCache.cs
- HMAC.cs
- XhtmlBasicPhoneCallAdapter.cs
- InstanceNameConverter.cs
- StringConcat.cs
- TextTreeNode.cs
- RNGCryptoServiceProvider.cs
- ManagementDateTime.cs
- RemoteHelper.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- DispatcherEventArgs.cs