Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / Data / CodeGen / StrongTypingException.cs / 1305376 / StrongTypingException.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data { using System; using System.Collections; using System.Data; using System.Runtime.Serialization; ////// [Serializable] public class StrongTypingException : DataException { protected StrongTypingException(SerializationInfo info, StreamingContext context) : base(info, context) { } ///DEV: The exception that is throwing from strong typed DataSet when user access to DBNull value. ////// public StrongTypingException() : base() { HResult = HResults.StrongTyping; } public StrongTypingException(string message) : base(message) { HResult = HResults.StrongTyping; } ///[To be supplied.] ////// public StrongTypingException(string s, Exception innerException) : base(s, innerException) { HResult = HResults.StrongTyping; } } ///[To be supplied.] ////// [Serializable] public class TypedDataSetGeneratorException : DataException { private ArrayList errorList; private string KEY_ARRAYCOUNT = "KEY_ARRAYCOUNT"; private string KEY_ARRAYVALUES = "KEY_ARRAYVALUES"; protected TypedDataSetGeneratorException(SerializationInfo info, StreamingContext context) : base(info, context) { int count = (int) info.GetValue(KEY_ARRAYCOUNT, typeof(System.Int32)); if (count > 0) { errorList = new ArrayList(); for (int i = 0; i < count; i++) { errorList.Add(info.GetValue(KEY_ARRAYVALUES + i, typeof(System.String))); } } else errorList = null; } ///DEV: The exception that is throwing in generating strong typed DataSet when name conflict happens. ////// public TypedDataSetGeneratorException() : base() { errorList = null; HResult = HResults.StrongTyping; } public TypedDataSetGeneratorException(string message) : base(message) { HResult = HResults.StrongTyping; } public TypedDataSetGeneratorException(string message, Exception innerException) : base(message, innerException) { HResult = HResults.StrongTyping; } ///[To be supplied.] ////// public TypedDataSetGeneratorException(ArrayList list) : this() { errorList = list; HResult = HResults.StrongTyping; } ///[To be supplied.] ////// public ArrayList ErrorList { get { return errorList; } } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { base.GetObjectData(info, context); if (errorList != null) { info.AddValue(KEY_ARRAYCOUNT, errorList.Count); for (int i = 0; i < errorList.Count; i++) { info.AddValue(KEY_ARRAYVALUES + i, errorList[i].ToString()); } } else { info.AddValue(KEY_ARRAYCOUNT, 0); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data { using System; using System.Collections; using System.Data; using System.Runtime.Serialization; ////// [Serializable] public class StrongTypingException : DataException { protected StrongTypingException(SerializationInfo info, StreamingContext context) : base(info, context) { } ///DEV: The exception that is throwing from strong typed DataSet when user access to DBNull value. ////// public StrongTypingException() : base() { HResult = HResults.StrongTyping; } public StrongTypingException(string message) : base(message) { HResult = HResults.StrongTyping; } ///[To be supplied.] ////// public StrongTypingException(string s, Exception innerException) : base(s, innerException) { HResult = HResults.StrongTyping; } } ///[To be supplied.] ////// [Serializable] public class TypedDataSetGeneratorException : DataException { private ArrayList errorList; private string KEY_ARRAYCOUNT = "KEY_ARRAYCOUNT"; private string KEY_ARRAYVALUES = "KEY_ARRAYVALUES"; protected TypedDataSetGeneratorException(SerializationInfo info, StreamingContext context) : base(info, context) { int count = (int) info.GetValue(KEY_ARRAYCOUNT, typeof(System.Int32)); if (count > 0) { errorList = new ArrayList(); for (int i = 0; i < count; i++) { errorList.Add(info.GetValue(KEY_ARRAYVALUES + i, typeof(System.String))); } } else errorList = null; } ///DEV: The exception that is throwing in generating strong typed DataSet when name conflict happens. ////// public TypedDataSetGeneratorException() : base() { errorList = null; HResult = HResults.StrongTyping; } public TypedDataSetGeneratorException(string message) : base(message) { HResult = HResults.StrongTyping; } public TypedDataSetGeneratorException(string message, Exception innerException) : base(message, innerException) { HResult = HResults.StrongTyping; } ///[To be supplied.] ////// public TypedDataSetGeneratorException(ArrayList list) : this() { errorList = list; HResult = HResults.StrongTyping; } ///[To be supplied.] ////// public ArrayList ErrorList { get { return errorList; } } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { base.GetObjectData(info, context); if (errorList != null) { info.AddValue(KEY_ARRAYCOUNT, errorList.Count); for (int i = 0; i < errorList.Count; i++) { info.AddValue(KEY_ARRAYVALUES + i, errorList[i].ToString()); } } else { info.AddValue(KEY_ARRAYCOUNT, 0); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PathStreamGeometryContext.cs
- OciEnlistContext.cs
- Route.cs
- GridViewSelectEventArgs.cs
- DelegateSerializationHolder.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- GACMembershipCondition.cs
- TypedTableHandler.cs
- IOException.cs
- LogReservationCollection.cs
- MachinePropertyVariants.cs
- EnumerableRowCollection.cs
- ConsoleCancelEventArgs.cs
- TextSchema.cs
- GlobalEventManager.cs
- Attributes.cs
- BroadcastEventHelper.cs
- MemberHolder.cs
- WCFServiceClientProxyGenerator.cs
- Msec.cs
- BooleanProjectedSlot.cs
- AsymmetricKeyExchangeDeformatter.cs
- Localizer.cs
- ConnectionsZoneAutoFormat.cs
- FunctionImportMapping.cs
- AutoResizedEvent.cs
- XmlElement.cs
- CodeDirectionExpression.cs
- DependencyProperty.cs
- OleDbDataAdapter.cs
- DataBoundLiteralControl.cs
- _Semaphore.cs
- LineVisual.cs
- CommonGetThemePartSize.cs
- XmlCharType.cs
- PenLineCapValidation.cs
- GatewayDefinition.cs
- AbsoluteQuery.cs
- OdbcEnvironmentHandle.cs
- ValueUtilsSmi.cs
- TemplateBindingExpressionConverter.cs
- ExpressionBuilder.cs
- SharedStatics.cs
- SystemGatewayIPAddressInformation.cs
- EntityDataSourceState.cs
- Literal.cs
- InvalidCastException.cs
- ParserStreamGeometryContext.cs
- SerializationEventsCache.cs
- LocatorGroup.cs
- PrintDialogException.cs
- EDesignUtil.cs
- Token.cs
- DefaultMergeHelper.cs
- SourceFilter.cs
- DesignerVerbToolStripMenuItem.cs
- Point3DCollection.cs
- IndexedEnumerable.cs
- SingleTagSectionHandler.cs
- DataColumnPropertyDescriptor.cs
- StateItem.cs
- Parser.cs
- XmlReaderSettings.cs
- WebPartEventArgs.cs
- ResourceDisplayNameAttribute.cs
- AbstractDataSvcMapFileLoader.cs
- HostedElements.cs
- TemplateBindingExtensionConverter.cs
- CookieProtection.cs
- ToolStripItemBehavior.cs
- RMEnrollmentPage3.cs
- WebPartsPersonalizationAuthorization.cs
- XmlIlGenerator.cs
- ToolStripDropDownButton.cs
- AnimationClock.cs
- DebugView.cs
- ConnectionPoint.cs
- RegexWorker.cs
- CqlLexerHelpers.cs
- InvalidPrinterException.cs
- AnimationTimeline.cs
- AxImporter.cs
- ActivationServices.cs
- autovalidator.cs
- WmlTextViewAdapter.cs
- HiddenField.cs
- AnonymousIdentificationSection.cs
- MethodCallConverter.cs
- xml.cs
- PathTooLongException.cs
- Menu.cs
- PropertyMetadata.cs
- DataRecord.cs
- HighlightVisual.cs
- AuthenticationModuleElement.cs
- List.cs
- Cloud.cs
- OleDbRowUpdatedEvent.cs
- RawMouseInputReport.cs
- SerializerWriterEventHandlers.cs