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
- ColorAnimationBase.cs
- ConfigXmlReader.cs
- DeleteMemberBinder.cs
- SchemaImporterExtension.cs
- Repeater.cs
- CLSCompliantAttribute.cs
- StringSorter.cs
- NonSerializedAttribute.cs
- DataGridViewRowEventArgs.cs
- PixelFormatConverter.cs
- IDQuery.cs
- XmlReflectionImporter.cs
- LinearGradientBrush.cs
- HitTestParameters.cs
- ClearTypeHintValidation.cs
- UndoManager.cs
- RewritingProcessor.cs
- HTMLTextWriter.cs
- CustomValidator.cs
- ConnectionsZoneAutoFormat.cs
- Brush.cs
- __ComObject.cs
- TdsParameterSetter.cs
- LazyInitializer.cs
- DocumentApplicationJournalEntry.cs
- CqlParser.cs
- ErrorLog.cs
- CodeConditionStatement.cs
- CorrelationManager.cs
- XPathItem.cs
- fixedPageContentExtractor.cs
- SmtpException.cs
- FileDialogPermission.cs
- ReflectTypeDescriptionProvider.cs
- QilGeneratorEnv.cs
- DrawingCollection.cs
- SettingsPropertyIsReadOnlyException.cs
- FormCollection.cs
- DBParameter.cs
- SqlConnectionPoolGroupProviderInfo.cs
- PositiveTimeSpanValidator.cs
- NamespaceInfo.cs
- ApplicationException.cs
- TokenCreationException.cs
- DataGridViewRowsAddedEventArgs.cs
- ImageUrlEditor.cs
- BufferedWebEventProvider.cs
- LabelAutomationPeer.cs
- SevenBitStream.cs
- ProvidePropertyAttribute.cs
- KeyValueConfigurationElement.cs
- RSAOAEPKeyExchangeFormatter.cs
- PinnedBufferMemoryStream.cs
- StrokeDescriptor.cs
- UriTemplateClientFormatter.cs
- GrammarBuilderWildcard.cs
- GeneralTransform3DGroup.cs
- HttpsChannelListener.cs
- RolePrincipal.cs
- RootBuilder.cs
- CompatibleComparer.cs
- Point3DAnimation.cs
- LayoutEvent.cs
- Gdiplus.cs
- CompilerGlobalScopeAttribute.cs
- SqlDependencyUtils.cs
- FirewallWrapper.cs
- RefreshPropertiesAttribute.cs
- UInt32.cs
- BezierSegment.cs
- _DomainName.cs
- TypedTableBase.cs
- SQLInt16.cs
- ToolboxComponentsCreatingEventArgs.cs
- Odbc32.cs
- ConfigXmlElement.cs
- DataFormat.cs
- ComponentEvent.cs
- HTTPNotFoundHandler.cs
- Font.cs
- SineEase.cs
- SmiGettersStream.cs
- IssuanceLicense.cs
- OptimizedTemplateContent.cs
- ConnectionString.cs
- IDQuery.cs
- FixedPageProcessor.cs
- Trustee.cs
- RangeValuePattern.cs
- UriWriter.cs
- X509Certificate2Collection.cs
- BaseDataListComponentEditor.cs
- LockCookie.cs
- GridViewDeleteEventArgs.cs
- SingleAnimationUsingKeyFrames.cs
- RepeatBehavior.cs
- PolicyManager.cs
- _RequestLifetimeSetter.cs
- OptimizerPatterns.cs
- SettingsAttributes.cs