Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WCF / infocard / Client / System / IdentityModel / Selectors / InfoCardBaseException.cs / 1305376 / InfoCardBaseException.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace Microsoft.InfoCards { using System; using System.Runtime.Serialization; [Serializable] internal abstract class InfoCardBaseException : System.Exception { private bool m_logged = false; private string m_extendedMessage; // Extended message string protected InfoCardBaseException( int result ) : base() { HResult = result; } protected InfoCardBaseException( int result, string message ) : base( message ) { HResult = result; } protected InfoCardBaseException( int result, string message, string extendedMessage ) : base( message ) { HResult = result; m_extendedMessage = extendedMessage; } protected InfoCardBaseException( int result, string message, Exception innerException ) : base( message, innerException ) { HResult = result; } protected InfoCardBaseException( int result, SerializationInfo info, StreamingContext context ) : base( info, context ) { HResult = result; } public int NativeHResult { get { return HResult; } } public bool Logged { get { return m_logged; } } public void MarkLogged() { m_logged = true; } public string ExtendedMessage { get { return m_extendedMessage; } } } } // 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
- BatchWriter.cs
- CustomSignedXml.cs
- RadioButtonPopupAdapter.cs
- NameSpaceExtractor.cs
- SerializationHelper.cs
- AncestorChangedEventArgs.cs
- FixedSOMImage.cs
- SqlOuterApplyReducer.cs
- SQLInt64.cs
- SharedConnectionWorkflowTransactionService.cs
- future.cs
- RelationshipManager.cs
- XmlHelper.cs
- TypeExtensions.cs
- WeakReferenceKey.cs
- UserMapPath.cs
- SiteOfOriginContainer.cs
- XamlSerializer.cs
- DataServiceProviderWrapper.cs
- DbCommandTree.cs
- DataFormat.cs
- CommonProperties.cs
- BasePattern.cs
- DBParameter.cs
- BamlRecordHelper.cs
- Error.cs
- FileAuthorizationModule.cs
- RIPEMD160Managed.cs
- BinaryFormatter.cs
- HeaderCollection.cs
- StrokeNodeOperations2.cs
- DataGridViewCellStyleConverter.cs
- ColumnCollectionEditor.cs
- RubberbandSelector.cs
- FileSystemWatcher.cs
- DataViewManagerListItemTypeDescriptor.cs
- SoapSchemaExporter.cs
- Root.cs
- XmlKeywords.cs
- HtmlInputPassword.cs
- DesignBindingPropertyDescriptor.cs
- TwoPhaseCommit.cs
- TraceUtility.cs
- PropertyGridDesigner.cs
- ReadOnlyTernaryTree.cs
- QueryCacheEntry.cs
- SHA512Cng.cs
- WindowPatternIdentifiers.cs
- SmiContextFactory.cs
- CurrentChangedEventManager.cs
- DataBindingList.cs
- Privilege.cs
- WmfPlaceableFileHeader.cs
- DataGridCellInfo.cs
- Trace.cs
- ProcessThread.cs
- StringOutput.cs
- TextSelectionHighlightLayer.cs
- OleDbConnection.cs
- TextStore.cs
- Native.cs
- WebPartRestoreVerb.cs
- AudienceUriMode.cs
- ZoneIdentityPermission.cs
- DataControlFieldCell.cs
- TaskHelper.cs
- InstanceHandleReference.cs
- Mapping.cs
- HierarchicalDataSourceDesigner.cs
- Configuration.cs
- InputScopeAttribute.cs
- DateRangeEvent.cs
- AspCompat.cs
- ClassHandlersStore.cs
- DBAsyncResult.cs
- XmlAttributes.cs
- SmiGettersStream.cs
- DesignSurface.cs
- Int32AnimationUsingKeyFrames.cs
- SamlAssertionKeyIdentifierClause.cs
- DataGridViewElement.cs
- XamlStackWriter.cs
- FileFormatException.cs
- ListViewPagedDataSource.cs
- EventMappingSettingsCollection.cs
- ContentPropertyAttribute.cs
- StreamFormatter.cs
- userdatakeys.cs
- GridItemCollection.cs
- TTSEngineProxy.cs
- JoinElimination.cs
- CompressedStack.cs
- OuterGlowBitmapEffect.cs
- Configuration.cs
- PointConverter.cs
- X509Certificate2.cs
- DataGridItem.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- LoginCancelEventArgs.cs
- LoopExpression.cs