Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataSet / System / Data / DataSetUtil.cs / 1 / DataSetUtil.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- using System; using System.Data; using System.Data.DataSetExtensions; using System.Diagnostics; internal static class DataSetUtil { #region CheckArgument internal static void CheckArgumentNull(T argumentValue, string argumentName) where T : class { if (null == argumentValue) { throw ArgumentNull(argumentName); } } #endregion #region Trace private static T TraceException (string trace, T e) { Debug.Assert(null != e, "TraceException: null Exception"); if (null != e) { //Bid.Trace(trace, e.ToString()); // will include callstack if permission is available } return e; } private static T TraceExceptionAsReturnValue (T e) { return TraceException(" '%ls'\n", e); } #endregion #region new Exception internal static ArgumentException Argument(string message) { return TraceExceptionAsReturnValue(new ArgumentException(message)); } internal static ArgumentNullException ArgumentNull(string message) { return TraceExceptionAsReturnValue(new ArgumentNullException(message)); } internal static ArgumentOutOfRangeException ArgumentOutOfRange(string message, string parameterName) { return TraceExceptionAsReturnValue(new ArgumentOutOfRangeException(parameterName, message)); } internal static InvalidCastException InvalidCast(string message) { return TraceExceptionAsReturnValue(new InvalidCastException(message)); } internal static InvalidOperationException InvalidOperation(string message) { return TraceExceptionAsReturnValue(new InvalidOperationException(message)); } internal static NotSupportedException NotSupported(string message) { return TraceExceptionAsReturnValue(new NotSupportedException(message)); } #endregion #region new EnumerationValueNotValid static internal ArgumentOutOfRangeException InvalidEnumerationValue(Type type, int value) { return ArgumentOutOfRange(Strings.DataSetLinq_InvalidEnumerationValue(type.Name, value.ToString(System.Globalization.CultureInfo.InvariantCulture)), type.Name); } static internal ArgumentOutOfRangeException InvalidDataRowState(DataRowState value) { #if DEBUG switch (value) { case DataRowState.Detached: case DataRowState.Unchanged: case DataRowState.Added: case DataRowState.Deleted: case DataRowState.Modified: Debug.Assert(false, "valid DataRowState " + value.ToString()); break; } #endif return InvalidEnumerationValue(typeof(DataRowState), (int)value); } static internal ArgumentOutOfRangeException InvalidLoadOption(LoadOption value) { #if DEBUG switch (value) { case LoadOption.OverwriteChanges: case LoadOption.PreserveChanges: case LoadOption.Upsert: Debug.Assert(false, "valid LoadOption " + value.ToString()); break; } #endif return InvalidEnumerationValue(typeof(LoadOption), (int)value); } #endregion // only StackOverflowException & ThreadAbortException are sealed classes static private readonly Type StackOverflowType = typeof(System.StackOverflowException); static private readonly Type OutOfMemoryType = typeof(System.OutOfMemoryException); static private readonly Type ThreadAbortType = typeof(System.Threading.ThreadAbortException); static private readonly Type NullReferenceType = typeof(System.NullReferenceException); static private readonly Type AccessViolationType = typeof(System.AccessViolationException); static private readonly Type SecurityType = typeof(System.Security.SecurityException); static internal bool IsCatchableExceptionType(Exception e) { // a 'catchable' exception is defined by what it is not. Type type = e.GetType(); return ((type != StackOverflowType) && (type != OutOfMemoryType) && (type != ThreadAbortType) && (type != NullReferenceType) && (type != AccessViolationType) && !SecurityType.IsAssignableFrom(type)); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- using System; using System.Data; using System.Data.DataSetExtensions; using System.Diagnostics; internal static class DataSetUtil { #region CheckArgument internal static void CheckArgumentNull(T argumentValue, string argumentName) where T : class { if (null == argumentValue) { throw ArgumentNull(argumentName); } } #endregion #region Trace private static T TraceException (string trace, T e) { Debug.Assert(null != e, "TraceException: null Exception"); if (null != e) { //Bid.Trace(trace, e.ToString()); // will include callstack if permission is available } return e; } private static T TraceExceptionAsReturnValue (T e) { return TraceException(" '%ls'\n", e); } #endregion #region new Exception internal static ArgumentException Argument(string message) { return TraceExceptionAsReturnValue(new ArgumentException(message)); } internal static ArgumentNullException ArgumentNull(string message) { return TraceExceptionAsReturnValue(new ArgumentNullException(message)); } internal static ArgumentOutOfRangeException ArgumentOutOfRange(string message, string parameterName) { return TraceExceptionAsReturnValue(new ArgumentOutOfRangeException(parameterName, message)); } internal static InvalidCastException InvalidCast(string message) { return TraceExceptionAsReturnValue(new InvalidCastException(message)); } internal static InvalidOperationException InvalidOperation(string message) { return TraceExceptionAsReturnValue(new InvalidOperationException(message)); } internal static NotSupportedException NotSupported(string message) { return TraceExceptionAsReturnValue(new NotSupportedException(message)); } #endregion #region new EnumerationValueNotValid static internal ArgumentOutOfRangeException InvalidEnumerationValue(Type type, int value) { return ArgumentOutOfRange(Strings.DataSetLinq_InvalidEnumerationValue(type.Name, value.ToString(System.Globalization.CultureInfo.InvariantCulture)), type.Name); } static internal ArgumentOutOfRangeException InvalidDataRowState(DataRowState value) { #if DEBUG switch (value) { case DataRowState.Detached: case DataRowState.Unchanged: case DataRowState.Added: case DataRowState.Deleted: case DataRowState.Modified: Debug.Assert(false, "valid DataRowState " + value.ToString()); break; } #endif return InvalidEnumerationValue(typeof(DataRowState), (int)value); } static internal ArgumentOutOfRangeException InvalidLoadOption(LoadOption value) { #if DEBUG switch (value) { case LoadOption.OverwriteChanges: case LoadOption.PreserveChanges: case LoadOption.Upsert: Debug.Assert(false, "valid LoadOption " + value.ToString()); break; } #endif return InvalidEnumerationValue(typeof(LoadOption), (int)value); } #endregion // only StackOverflowException & ThreadAbortException are sealed classes static private readonly Type StackOverflowType = typeof(System.StackOverflowException); static private readonly Type OutOfMemoryType = typeof(System.OutOfMemoryException); static private readonly Type ThreadAbortType = typeof(System.Threading.ThreadAbortException); static private readonly Type NullReferenceType = typeof(System.NullReferenceException); static private readonly Type AccessViolationType = typeof(System.AccessViolationException); static private readonly Type SecurityType = typeof(System.Security.SecurityException); static internal bool IsCatchableExceptionType(Exception e) { // a 'catchable' exception is defined by what it is not. Type type = e.GetType(); return ((type != StackOverflowType) && (type != OutOfMemoryType) && (type != ThreadAbortType) && (type != NullReferenceType) && (type != AccessViolationType) && !SecurityType.IsAssignableFrom(type)); } } // 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
- ZoomPercentageConverter.cs
- RandomDelayQueuedSendsAsyncResult.cs
- ActiveXHost.cs
- XhtmlBasicObjectListAdapter.cs
- MenuItemCollection.cs
- HotSpotCollection.cs
- BindingEntityInfo.cs
- ChtmlTextBoxAdapter.cs
- DragEventArgs.cs
- SymbolPair.cs
- SqlConnectionHelper.cs
- WorkflowInlining.cs
- ParameterElementCollection.cs
- BooleanSwitch.cs
- WebConfigManager.cs
- AsyncResult.cs
- FileStream.cs
- PolyBezierSegment.cs
- HttpServerUtilityWrapper.cs
- XmlDictionaryString.cs
- XamlReader.cs
- PackWebResponse.cs
- WindowsFormsHelpers.cs
- LZCodec.cs
- StoreContentChangedEventArgs.cs
- AccessedThroughPropertyAttribute.cs
- StreamInfo.cs
- SystemIPGlobalProperties.cs
- WindowManager.cs
- RelationshipFixer.cs
- TimeSpanOrInfiniteValidator.cs
- SafeRightsManagementQueryHandle.cs
- SynchronizationContext.cs
- XPathChildIterator.cs
- GridItemPattern.cs
- WinFormsSecurity.cs
- WebPartHelpVerb.cs
- Adorner.cs
- StoryFragments.cs
- ToolStripHighContrastRenderer.cs
- XamlGridLengthSerializer.cs
- DBDataPermissionAttribute.cs
- HtmlMeta.cs
- filewebrequest.cs
- ComboBox.cs
- CompiledQuery.cs
- TextServicesPropertyRanges.cs
- ClientScriptManager.cs
- InstancePersistence.cs
- ExtentCqlBlock.cs
- PageParserFilter.cs
- OutArgument.cs
- ZeroOpNode.cs
- DataGrid.cs
- DataBindingHandlerAttribute.cs
- WebPartUtil.cs
- ChannelRequirements.cs
- NumericUpDown.cs
- RoleManagerSection.cs
- MSAANativeProvider.cs
- DefaultMemberAttribute.cs
- HWStack.cs
- TaiwanLunisolarCalendar.cs
- OracleEncoding.cs
- StreamGeometry.cs
- GrammarBuilder.cs
- ProjectionCamera.cs
- ContainerControlDesigner.cs
- ParseHttpDate.cs
- ContextMenu.cs
- FramingChannels.cs
- XmlSchemaExporter.cs
- ClientRuntimeConfig.cs
- SQLMoneyStorage.cs
- TrustSection.cs
- DesignerAdapterUtil.cs
- IssuedTokenParametersElement.cs
- OutputCacheProfile.cs
- WindowVisualStateTracker.cs
- TypeResolver.cs
- Int16.cs
- HttpModuleCollection.cs
- MemberDescriptor.cs
- UIElementParaClient.cs
- CreatingCookieEventArgs.cs
- HttpChannelHelpers.cs
- URLString.cs
- TreeWalker.cs
- SignedPkcs7.cs
- BamlRecordReader.cs
- _AcceptOverlappedAsyncResult.cs
- KeyManager.cs
- StorageEntityTypeMapping.cs
- PlatformNotSupportedException.cs
- DataGridItem.cs
- MissingFieldException.cs
- WriteLine.cs
- ErrorFormatter.cs
- XamlBrushSerializer.cs
- TimeoutHelper.cs