Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Dispatcher / ErrorHandlerFaultInfo.cs / 1 / ErrorHandlerFaultInfo.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel.Dispatcher { using System; using System.ServiceModel.Channels; using System.ServiceModel; using System.ServiceModel.Diagnostics; internal struct ErrorHandlerFaultInfo { Message fault; // if this is null, then we aren't interested in sending back a fault bool isConsideredUnhandled; // if this is true, it means Fault is the 'internal server error' fault string defaultFaultAction; public ErrorHandlerFaultInfo(string defaultFaultAction) { this.defaultFaultAction = defaultFaultAction; this.fault = null; this.isConsideredUnhandled = false; } public Message Fault { get { return this.fault; } set { this.fault = value; } } public string DefaultFaultAction { get { return this.defaultFaultAction; } set { this.defaultFaultAction = value; } } public bool IsConsideredUnhandled { get { return this.isConsideredUnhandled; } set { this.isConsideredUnhandled = value; } } } } // 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
- MissingSatelliteAssemblyException.cs
- MobileContainerDesigner.cs
- PrivilegedConfigurationManager.cs
- EmbeddedMailObject.cs
- MenuBase.cs
- ObjectDataSourceSelectingEventArgs.cs
- XmlSchemaInferenceException.cs
- ByeMessageApril2005.cs
- PerspectiveCamera.cs
- MonthChangedEventArgs.cs
- RuleRefElement.cs
- MsmqTransportSecurityElement.cs
- UrlMappingsSection.cs
- EventHandlersStore.cs
- DataServiceException.cs
- RuntimeConfig.cs
- OdbcConnectionStringbuilder.cs
- Soap.cs
- UIAgentRequest.cs
- PkcsUtils.cs
- XmlSchemaGroupRef.cs
- Ipv6Element.cs
- DbParameterHelper.cs
- ParagraphVisual.cs
- DispatcherHooks.cs
- ConfigurationValidatorBase.cs
- LocalizableResourceBuilder.cs
- DropShadowBitmapEffect.cs
- InheritedPropertyDescriptor.cs
- RemotingAttributes.cs
- PrivateFontCollection.cs
- ReadOnlyAttribute.cs
- XhtmlConformanceSection.cs
- FontInfo.cs
- ExtentKey.cs
- SqlServer2KCompatibilityAnnotation.cs
- XmlSchemaException.cs
- ListViewSortEventArgs.cs
- LinkLabel.cs
- ZipFileInfo.cs
- DataServiceException.cs
- ScalarConstant.cs
- controlskin.cs
- GatewayDefinition.cs
- TextRangeEditLists.cs
- AsyncResult.cs
- SignatureGenerator.cs
- OdbcConnectionHandle.cs
- RouteItem.cs
- OracleSqlParser.cs
- ManifestBasedResourceGroveler.cs
- CompareInfo.cs
- ToolBarButtonClickEvent.cs
- GroupItemAutomationPeer.cs
- CounterNameConverter.cs
- SecureStringHasher.cs
- RequestTimeoutManager.cs
- StylusDevice.cs
- HwndStylusInputProvider.cs
- DoubleIndependentAnimationStorage.cs
- linebase.cs
- RectangleHotSpot.cs
- ScrollBar.cs
- ScrollEvent.cs
- Exceptions.cs
- FilterQuery.cs
- OperationPickerDialog.designer.cs
- EntityExpressionVisitor.cs
- _Rfc2616CacheValidators.cs
- StateDesigner.TransitionInfo.cs
- ConfigurationErrorsException.cs
- TextElement.cs
- Validator.cs
- ComboBox.cs
- XslAstAnalyzer.cs
- Query.cs
- RelationshipManager.cs
- _OSSOCK.cs
- StringPropertyBuilder.cs
- SHA384.cs
- URLString.cs
- FreezableDefaultValueFactory.cs
- RequestTimeoutManager.cs
- AccessDataSourceView.cs
- EventDescriptorCollection.cs
- SqlDelegatedTransaction.cs
- COM2PropertyDescriptor.cs
- ProfilePropertySettingsCollection.cs
- InkCanvasFeedbackAdorner.cs
- TdsValueSetter.cs
- DbDataReader.cs
- ConsoleCancelEventArgs.cs
- ToolStripContainerDesigner.cs
- PaintEvent.cs
- SecurityElement.cs
- WebHostedComPlusServiceHost.cs
- WebPartCloseVerb.cs
- SQLConvert.cs
- OdbcParameter.cs
- UnhandledExceptionEventArgs.cs