Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataEntity / System / Data / EntityCommandExecutionException.cs / 1 / EntityCommandExecutionException.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data { using System; using System.IO; using System.Data.Common; using System.Globalization; using System.Runtime.Serialization; using System.Security.Permissions; ////// Represents a failure while trying to prepare or execute a CommandExecution /// /// This exception is intended to provide a common exception that people can catch to /// hold provider exceptions (SqlException, OracleException) when using the EntityCommand /// to execute statements. /// [Serializable] public sealed class EntityCommandExecutionException : EntityException { #region Constructors ////// initializes a new instance of EntityCommandExecutionException, no message, no inner exception. Probably shouldn't /// exist, but it makes FxCop happy. /// public EntityCommandExecutionException() : base() { HResult = HResults.CommandExecution; } ////// initializes a new instance of EntityCommandExecutionException, with message, no inner exception. Probably shouldn't /// exist, but it makes FxCop happy. /// public EntityCommandExecutionException(string message) : base(message) { HResult = HResults.CommandExecution; } ////// initializes a new instance of EntityCommandExecutionException with message and an inner exception instance /// /// /// public EntityCommandExecutionException(string message, Exception innerException) : base(message, innerException) { HResult = HResults.CommandExecution; } ////// initializes a new instance EntityCommandExecutionException with a given SerializationInfo and StreamingContext /// /// /// private EntityCommandExecutionException(SerializationInfo serializationInfo, StreamingContext streamingContext) : base(serializationInfo, streamingContext) { HResult = HResults.CommandExecution; } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data { using System; using System.IO; using System.Data.Common; using System.Globalization; using System.Runtime.Serialization; using System.Security.Permissions; ////// Represents a failure while trying to prepare or execute a CommandExecution /// /// This exception is intended to provide a common exception that people can catch to /// hold provider exceptions (SqlException, OracleException) when using the EntityCommand /// to execute statements. /// [Serializable] public sealed class EntityCommandExecutionException : EntityException { #region Constructors ////// initializes a new instance of EntityCommandExecutionException, no message, no inner exception. Probably shouldn't /// exist, but it makes FxCop happy. /// public EntityCommandExecutionException() : base() { HResult = HResults.CommandExecution; } ////// initializes a new instance of EntityCommandExecutionException, with message, no inner exception. Probably shouldn't /// exist, but it makes FxCop happy. /// public EntityCommandExecutionException(string message) : base(message) { HResult = HResults.CommandExecution; } ////// initializes a new instance of EntityCommandExecutionException with message and an inner exception instance /// /// /// public EntityCommandExecutionException(string message, Exception innerException) : base(message, innerException) { HResult = HResults.CommandExecution; } ////// initializes a new instance EntityCommandExecutionException with a given SerializationInfo and StreamingContext /// /// /// private EntityCommandExecutionException(SerializationInfo serializationInfo, StreamingContext streamingContext) : base(serializationInfo, streamingContext) { HResult = HResults.CommandExecution; } #endregion } } // 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
- DiffuseMaterial.cs
- MappingSource.cs
- IResourceProvider.cs
- SponsorHelper.cs
- AddInController.cs
- TaiwanCalendar.cs
- IsolationInterop.cs
- FullTextLine.cs
- PrintPreviewControl.cs
- RSAPKCS1KeyExchangeFormatter.cs
- KeyedPriorityQueue.cs
- XmlSchemaDocumentation.cs
- PolyLineSegment.cs
- GenericXmlSecurityToken.cs
- WebScriptMetadataInstanceContextProvider.cs
- PhysicalAddress.cs
- PopupControlService.cs
- ThreadPool.cs
- PageHandlerFactory.cs
- mediaeventargs.cs
- Calendar.cs
- RemotingException.cs
- GrammarBuilderBase.cs
- UnderstoodHeaders.cs
- AssemblyGen.cs
- ExternalCalls.cs
- XmlnsDictionary.cs
- ServiceNotStartedException.cs
- RoleGroupCollection.cs
- UpdateException.cs
- DBPropSet.cs
- Point3DKeyFrameCollection.cs
- PropertyManager.cs
- LogSwitch.cs
- WindowsTitleBar.cs
- InstanceDescriptor.cs
- ManualResetEventSlim.cs
- EntityModelBuildProvider.cs
- ContainsRowNumberChecker.cs
- Section.cs
- PointAnimationClockResource.cs
- TextBox.cs
- ForceCopyBuildProvider.cs
- ColumnMapCopier.cs
- FormsAuthenticationCredentials.cs
- WindowsAuthenticationModule.cs
- XmlToDatasetMap.cs
- FixedSOMSemanticBox.cs
- InfoCardRSACryptoProvider.cs
- KeyValueConfigurationCollection.cs
- ObjectPersistData.cs
- BypassElement.cs
- ToolStripPanelRenderEventArgs.cs
- XmlSchemaComplexType.cs
- ApplicationGesture.cs
- ScriptIgnoreAttribute.cs
- BitmapEffectInput.cs
- CounterNameConverter.cs
- _DomainName.cs
- SendKeys.cs
- TriggerBase.cs
- MenuRenderer.cs
- SqlException.cs
- CopyNodeSetAction.cs
- RequestCache.cs
- FunctionParameter.cs
- PersonalizationAdministration.cs
- ToolStripArrowRenderEventArgs.cs
- DrawingDrawingContext.cs
- AlignmentXValidation.cs
- GeneralTransform2DTo3DTo2D.cs
- IsolatedStorage.cs
- Stackframe.cs
- StorageAssociationTypeMapping.cs
- PieceDirectory.cs
- UdpUtility.cs
- DBBindings.cs
- PolygonHotSpot.cs
- SynchronizedDisposablePool.cs
- DropDownList.cs
- XmlAttributes.cs
- InfoCardArgumentException.cs
- SystemUnicastIPAddressInformation.cs
- InputScopeAttribute.cs
- DataConnectionHelper.cs
- ZipArchive.cs
- NullRuntimeConfig.cs
- IPGlobalProperties.cs
- ProtocolInformationReader.cs
- TextStore.cs
- SubtreeProcessor.cs
- UniqueConstraint.cs
- OneOfConst.cs
- DifferencingCollection.cs
- SafeNativeMethods.cs
- TextServicesHost.cs
- IOException.cs
- StylusCaptureWithinProperty.cs
- StringConverter.cs
- HtmlSelectionListAdapter.cs