Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / infocard / Service / managed / Microsoft / InfoCards / WSIdentityFaultException.cs / 1 / WSIdentityFaultException.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace Microsoft.InfoCards { using System; using System.Globalization; using System.Xml; using System.Text; using System.Runtime.Serialization; using Microsoft.InfoCards.Diagnostics; using System.ServiceModel; using System.ServiceModel.Channels; using IDT = Microsoft.InfoCards.Diagnostics.InfoCardTrace; // // Wraps a fault message returned from the sts in an appropriate infocard exception. // internal class WSIdentityFaultException :InfoCardBaseException { // // Default exception that we return if we do not understand the fault. // const int HRESULT = (int)EventCode.E_ICARD_TRUSTEXCHANGE; // // Summary: // Throws an infocardBase derived exception if the incoming message is a fault. // Notes: This logically lives in the diagnostics classes, but cannot be moved there // due to the sharing of the code across client and service since the client does // not reference System.ServiceModel. // public static void ThrowIfFaultMessage( Message message, CultureInfo displayCulture ) { // // const int MAX_FAULT_BUFFER = 2 * 1000 * 1000; if( !message.IsFault ) { return; } MessageFault fault = MessageFault.CreateFault( message, MAX_FAULT_BUFFER ); FaultException exception = FaultException.CreateFault( fault ); // // If we have a fault detail in the message then log that also // otherwise just log the actual fault reason text.. // string description = exception.Message; string extendedMessage = string.Empty; if( null != fault.Reason ) { // // GetMatchingTranslation returns the first reason from the collection in case a match fails. // FaultReasonText faultReason = fault.Reason.GetMatchingTranslation( displayCulture ); if( null != faultReason ) { extendedMessage = faultReason.Text; } } if( fault.HasDetail ) { using( XmlReader reader = fault.GetReaderAtDetailContents() ) { if( reader.Read() ) { description = String.Format( System.Globalization.CultureInfo.CurrentUICulture, SR.GetString( SR.FaultMessageFormat ), exception.Message, reader.ReadOuterXml() ); } } } // // We don't save fe, only use it to switch the hresult. // throw IDT.ThrowHelperErrorWithNoLogging( new WSIdentityFaultException( description, extendedMessage, exception ) ); } public WSIdentityFaultException() : base( HRESULT ) { } public WSIdentityFaultException( string message ) : base( HRESULT, message ) { } public WSIdentityFaultException( string message, string extendedMessage, Exception inner ) : base( HRESULT, message, extendedMessage ) { if( inner is FaultException ) { MapFaultException( inner as FaultException ); } } protected WSIdentityFaultException( SerializationInfo si, StreamingContext sc ) : base( HRESULT, si, sc ) { } // // Summary: // Maps an incoming fault exception to one of the recognised infocard exceptions, // or to a generic exception if it is not one of the set we recognise. // private void MapFaultException( FaultException fe ) { if( null != fe && null != fe.Code && null != fe.Code.SubCode && ( fe.Code.SubCode.Namespace == XmlNames.WSIdentity.FaultNamespace ) ) { switch( fe.Code.SubCode.Name ) { case XmlNames.WSIdentity.FaultRefreshRequired: HResult = (int)EventCode.E_ICARD_REFRESH_REQUIRED; break; case XmlNames.WSIdentity.FaultMissingAppliesTo: HResult = (int)EventCode.E_ICARD_MISSING_APPLIESTO; break; case XmlNames.WSIdentity.FaultInvalidProofKey: HResult = (int)EventCode.E_ICARD_INVALID_PROOF_KEY; break; case XmlNames.WSIdentity.FaultUnknownReference: HResult = (int)EventCode.E_ICARD_UNKNOWN_REFERENCE; break; case XmlNames.WSIdentity.FaultRequiredClaims: HResult = (int)EventCode.E_ICARD_FAILED_REQUIRED_CLAIMS; break; default: break; } } } } } // 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
- ListControlBoundActionList.cs
- StylusTip.cs
- ClientFormsIdentity.cs
- CommandHelpers.cs
- QilUnary.cs
- SendKeys.cs
- InboundActivityHelper.cs
- MatrixTransform.cs
- SpAudioStreamWrapper.cs
- DataSourceXmlSerializationAttribute.cs
- StylusButton.cs
- BitmapMetadataEnumerator.cs
- BoolLiteral.cs
- XmlSchemaGroupRef.cs
- XmlSchemaAll.cs
- SelectionManager.cs
- CollectionConverter.cs
- ArgIterator.cs
- TextStore.cs
- ResourceManagerWrapper.cs
- ByteFacetDescriptionElement.cs
- KeyPressEvent.cs
- DataContractSerializerSection.cs
- HtmlElementEventArgs.cs
- ValidationPropertyAttribute.cs
- ChtmlLinkAdapter.cs
- MarkedHighlightComponent.cs
- ButtonChrome.cs
- ConstraintManager.cs
- InkCanvasInnerCanvas.cs
- FontStyles.cs
- SecurityManager.cs
- EventLogSession.cs
- ConfigurationPropertyCollection.cs
- EnlistmentState.cs
- ImageAnimator.cs
- ThrowHelper.cs
- CompilationAssemblyInstallComponent.cs
- UIntPtr.cs
- JoinTreeSlot.cs
- TextViewBase.cs
- XmlDocument.cs
- SecurityUniqueId.cs
- FilterUserControlBase.cs
- BitmapDecoder.cs
- ListCollectionView.cs
- TreeNodeClickEventArgs.cs
- ActivityLocationReferenceEnvironment.cs
- ClientWindowsAuthenticationMembershipProvider.cs
- SQLBinary.cs
- MarkupExtensionSerializer.cs
- XmlSignificantWhitespace.cs
- PageContentCollection.cs
- NotSupportedException.cs
- WebPartExportVerb.cs
- serverconfig.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- CodeDomComponentSerializationService.cs
- ConfigXmlWhitespace.cs
- WorkflowControlEndpoint.cs
- Assert.cs
- IUnknownConstantAttribute.cs
- XMLUtil.cs
- IsolatedStorageFileStream.cs
- ReflectionTypeLoadException.cs
- XPathQueryGenerator.cs
- objectquery_tresulttype.cs
- BindingElementExtensionElement.cs
- XsltFunctions.cs
- ProcessHostConfigUtils.cs
- CompositeFontInfo.cs
- TextParaClient.cs
- EntityType.cs
- ControlAdapter.cs
- EndEvent.cs
- Transform.cs
- ProfileElement.cs
- Constraint.cs
- NTAccount.cs
- QueryCreatedEventArgs.cs
- XPathNodeInfoAtom.cs
- DbProviderFactoriesConfigurationHandler.cs
- ConstantSlot.cs
- FontSizeConverter.cs
- XmlWellformedWriterHelpers.cs
- RtfControls.cs
- WindowsIdentity.cs
- METAHEADER.cs
- AbstractSvcMapFileLoader.cs
- CodeIdentifier.cs
- SqlGatherConsumedAliases.cs
- DrawingCollection.cs
- HotSpotCollection.cs
- DesignerMetadata.cs
- ToolboxComponentsCreatedEventArgs.cs
- Visitors.cs
- ServiceBusyException.cs
- RequestQueue.cs
- KernelTypeValidation.cs
- Schema.cs