Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Data / System / Data / CodeGen / StrongTypingException.cs / 1 / 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] #if WINFSInternalOnly internal #else public #endif 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] #if WINFSInternalOnly internal #else public #endif 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. // Copyright (c) Microsoft Corporation. All rights reserved.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XPathDocumentNavigator.cs
- GenericEnumerator.cs
- DataGridViewCellFormattingEventArgs.cs
- MembershipValidatePasswordEventArgs.cs
- TablePatternIdentifiers.cs
- PartialCachingAttribute.cs
- TreeSet.cs
- TextElementEnumerator.cs
- DateTimeConverter2.cs
- RepeaterItem.cs
- EditCommandColumn.cs
- SpellerError.cs
- Stack.cs
- StreamGeometry.cs
- MachineKeySection.cs
- DataObjectSettingDataEventArgs.cs
- InputMethodStateTypeInfo.cs
- TextTreeUndoUnit.cs
- PersistChildrenAttribute.cs
- Int16AnimationUsingKeyFrames.cs
- InternalControlCollection.cs
- WorkflowServiceBehavior.cs
- Missing.cs
- DefaultEventAttribute.cs
- ClrProviderManifest.cs
- ConstructorBuilder.cs
- ErrorInfoXmlDocument.cs
- Rule.cs
- XPathNodeIterator.cs
- Span.cs
- XmlCharCheckingWriter.cs
- DashStyle.cs
- MatrixCamera.cs
- HtmlHistory.cs
- EventSinkHelperWriter.cs
- NativeDirectoryServicesQueryAPIs.cs
- DelegatingTypeDescriptionProvider.cs
- AutoResizedEvent.cs
- CellPartitioner.cs
- StateRuntime.cs
- AppSettingsExpressionBuilder.cs
- HttpGetProtocolImporter.cs
- ToolStripOverflow.cs
- Pair.cs
- WinEventWrap.cs
- SQLRoleProvider.cs
- BuildManager.cs
- WindowPatternIdentifiers.cs
- SessionEndingEventArgs.cs
- AttributeSetAction.cs
- Tool.cs
- ListenDesigner.cs
- InfoCardSymmetricCrypto.cs
- SqlNodeTypeOperators.cs
- NativeMethods.cs
- Semaphore.cs
- DocumentOrderQuery.cs
- InternalPolicyElement.cs
- FontEmbeddingManager.cs
- TagPrefixCollection.cs
- TextDecorationCollectionConverter.cs
- localization.cs
- HttpAsyncResult.cs
- IxmlLineInfo.cs
- Package.cs
- RealizationContext.cs
- PropertyEmitterBase.cs
- FormParameter.cs
- OleDbParameter.cs
- DecoderNLS.cs
- DataPagerCommandEventArgs.cs
- XsltContext.cs
- MsmqIntegrationAppDomainProtocolHandler.cs
- UiaCoreTypesApi.cs
- MimeBasePart.cs
- TraceHandlerErrorFormatter.cs
- EventProviderClassic.cs
- XmlQueryOutput.cs
- DiscoveryExceptionDictionary.cs
- HtmlInputReset.cs
- DeviceSpecificChoiceCollection.cs
- LostFocusEventManager.cs
- ConstraintStruct.cs
- Double.cs
- TerminatorSinks.cs
- ServerValidateEventArgs.cs
- Switch.cs
- StringFreezingAttribute.cs
- XmlChildEnumerator.cs
- VisualTreeUtils.cs
- LocatorPart.cs
- PointKeyFrameCollection.cs
- TimeStampChecker.cs
- ExtensionElementCollection.cs
- CalculatedColumn.cs
- CalendarDesigner.cs
- ToolBar.cs
- StringExpressionSet.cs
- CacheMemory.cs
- ConfigXmlAttribute.cs