Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / ComIntegration / Error.cs / 1 / Error.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel.ComIntegration { using System; using System.ServiceModel.Channels; using System.ServiceModel; using System.ServiceModel.Description; using System.Globalization; using System.Runtime.Serialization; using System.Runtime.InteropServices; using System.ComponentModel; static class Error { const string FaultNamespace = System.ServiceModel.FaultException.Namespace; public static Exception ActivationAccessDenied() { return CreateFault("ComActivationAccessDenied", SR.GetString(SR.ComActivationAccessDenied)); } public static Exception QFENotPresent() { return CreateFault("ServiceHostStartingServiceErrorNoQFE", SR.GetString(SR.ComPlusServiceHostStartingServiceErrorNoQFE)); } public static Exception DirectoryNotFound(string directory) { return CreateFault("DirectoryNotFound", SR.GetString(SR.TempDirectoryNotFound, directory)); } public static Exception CannotAccessDirectory(string directory) { return CreateFault("CannotAccessDirectory", SR.GetString(SR.CannotAccessDirectory, directory)); } public static Exception ManifestCreationFailed(string file, string error) { return CreateFault("ManifestCreationFailed", SR.GetString(SR.ComIntegrationManifestCreationFailed, file, error)); } public static Exception ActivationFailure() { return CreateFault("ComActivationFailure", SR.GetString(SR.ComActivationFailure)); } public static Exception UnexpectedThreadingModel() { return CreateFault("UnexpectedThreadingModel", SR.GetString(SR.UnexpectedThreadingModel)); } public static Exception DllHostInitializerFoundNoServices() { return CreateFault("DllHostInitializerFoundNoServices", SR.GetString(SR.ComDllHostInitializerFoundNoServices)); } public static Exception ServiceMonikerSupportLoadFailed(string dllname) { return CreateFault("UnableToLoadServiceMonikerSupportDll", SR.GetString(SR.UnableToLoadDll, dllname)); } public static Exception CallAccessDenied() { return CreateFault("ComAccessDenied", SR.GetString(SR.ComMessageAccessDenied)); } public static Exception RequiresWindowsSecurity() { return CreateFault("ComWindowsIdentityRequired", SR.GetString(SR.ComRequiresWindowsSecurity)); } public static Exception NoAsyncOperationsAllowed() { return CreateFault("NoAsyncOperationsAllowed", SR.GetString(SR.ComNoAsyncOperationsAllowed)); } public static Exception DuplicateOperation() { return CreateFault("DuplicateOperation", SR.GetString(SR.ComDuplicateOperation)); } public static Exception InconsistentSessionRequirements() { return CreateFault("ComInconsistentSessionRequirements", SR.GetString(SR.ComInconsistentSessionRequirements)); } public static Exception TransactionMismatch() { // NOTE: The fault created here is identical to the one // created by the TransactionBehavior when // concurrent transactions are not supported. // return CreateFault("Transactions", SR.GetString(SR.SFxTransactionsNotSupported)); } public static Exception ListenerInitFailed(string message) { return new ComPlusListenerInitializationException(message); } public static Exception ListenerInitFailed(string message, Exception inner) { return new ComPlusListenerInitializationException(message, inner); } static Exception CreateFault(string code, string reason) { FaultCode codeObj= FaultCode.CreateSenderFaultCode(code, FaultNamespace); FaultReason reasonObj = new FaultReason(reason, CultureInfo.CurrentCulture); return new FaultException(reasonObj, codeObj); } } [Serializable] internal class ComPlusListenerInitializationException : Exception { public ComPlusListenerInitializationException() : base() { } public ComPlusListenerInitializationException(string message) : base(message) { } public ComPlusListenerInitializationException(string message, Exception inner) : base(message, inner) { } protected ComPlusListenerInitializationException(SerializationInfo info, StreamingContext context) : base(info, context) { } } [Serializable] internal class ComPlusProxyProviderException : Exception { public ComPlusProxyProviderException(string message, Exception inner) : base(message, inner) { } } } // 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
- TemplatedWizardStep.cs
- CodeCatchClauseCollection.cs
- CompModSwitches.cs
- AutomationAttributeInfo.cs
- DomNameTable.cs
- SHA512Managed.cs
- NonVisualControlAttribute.cs
- MinMaxParagraphWidth.cs
- ListItemCollection.cs
- SvcMapFileSerializer.cs
- ConnectionOrientedTransportElement.cs
- PerformanceCounterPermission.cs
- SoapReflectionImporter.cs
- EventEntry.cs
- AdapterUtil.cs
- Label.cs
- Int32Collection.cs
- PolicyStatement.cs
- Visual3DCollection.cs
- DataGridViewTopLeftHeaderCell.cs
- KeyedHashAlgorithm.cs
- Assembly.cs
- CommandConverter.cs
- HashMembershipCondition.cs
- WebSysDisplayNameAttribute.cs
- ReliableSessionBindingElement.cs
- UIPropertyMetadata.cs
- COAUTHIDENTITY.cs
- VariantWrapper.cs
- MatrixAnimationUsingKeyFrames.cs
- PropertyGeneratedEventArgs.cs
- TextParaClient.cs
- AssociationSetMetadata.cs
- ValidationEventArgs.cs
- NoResizeHandleGlyph.cs
- UniqueIdentifierService.cs
- FormsAuthenticationUser.cs
- ReachDocumentReferenceCollectionSerializer.cs
- PropertyEmitter.cs
- Pts.cs
- WorkflowRuntimeServiceElement.cs
- FileReservationCollection.cs
- DesignerObjectListAdapter.cs
- ClipboardProcessor.cs
- SafeTimerHandle.cs
- DataGridViewHitTestInfo.cs
- ModelUtilities.cs
- PKCS1MaskGenerationMethod.cs
- UrlPropertyAttribute.cs
- DbProviderFactory.cs
- RepeaterItemEventArgs.cs
- CompilerTypeWithParams.cs
- OutputCacheModule.cs
- RuntimeCompatibilityAttribute.cs
- ImpersonationContext.cs
- NameHandler.cs
- FieldBuilder.cs
- CustomErrorCollection.cs
- OdbcReferenceCollection.cs
- Stopwatch.cs
- RelationshipManager.cs
- ControlBindingsCollection.cs
- XmlWhitespace.cs
- WizardSideBarListControlItemEventArgs.cs
- ImportFileRequest.cs
- BitmapEffectrendercontext.cs
- SettingsAttributeDictionary.cs
- MailWriter.cs
- Set.cs
- FloatUtil.cs
- WsdlImporterElementCollection.cs
- SqlClientPermission.cs
- TextInfo.cs
- brushes.cs
- CheckoutException.cs
- PreloadedPackages.cs
- ImmutableObjectAttribute.cs
- RecommendedAsConfigurableAttribute.cs
- OuterGlowBitmapEffect.cs
- BrowserDefinition.cs
- ColorDialog.cs
- LocalFileSettingsProvider.cs
- SubMenuStyleCollection.cs
- SqlServer2KCompatibilityAnnotation.cs
- dsa.cs
- OleAutBinder.cs
- HyperLinkField.cs
- RSAOAEPKeyExchangeFormatter.cs
- XmlSchemaAnyAttribute.cs
- ExceptionTranslationTable.cs
- ListViewHitTestInfo.cs
- GeneralTransform3D.cs
- WebBrowserEvent.cs
- Debug.cs
- COM2PropertyPageUITypeConverter.cs
- WebPartDeleteVerb.cs
- SchemaEntity.cs
- CodeCommentStatement.cs
- PointCollection.cs
- CharacterHit.cs