Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataWeb / Design / system / Data / Entity / Design / Common / EDesignUtil.cs / 1 / EDesignUtil.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // @owner [....] // @backupOwner [....] //----------------------------------------------------------------------------- namespace System.Data.Services.Design.Common { using Microsoft.Win32; using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Configuration; using System.Data; using System.Data.Metadata.Edm; using System.Data.Objects; using System.Data.Objects.DataClasses; using System.Data.SqlTypes; using System.Diagnostics; using System.Globalization; using System.IO; using System.Reflection; using System.Runtime.ConstrainedExecution; using System.Runtime.InteropServices; using System.Runtime.Serialization; using System.Text; using System.Threading; using System.Xml; using Microsoft.SqlServer.Server; internal static class EDesignUtil { //////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// // // Helper Functions // static internal T CheckArgumentNull(T value, string parameterName) where T : class { if (null == value) { throw ArgumentNull(parameterName); } return value; } static internal void CheckStringArgument(string value, string parameterName) { // Throw ArgumentNullException when string is null CheckArgumentNull(value, parameterName); // Throw ArgumentException when string is empty if (value.Length == 0) { throw InvalidStringArgument(parameterName); } } static internal LanguageOption CheckLanguageOptionArgument(LanguageOption value, string paramName) { if (value == LanguageOption.GenerateCSharpCode || value == LanguageOption.GenerateVBCode) { return value; } throw ArgumentOutOfRange(paramName); } static internal ArgumentException InvalidStringArgument(string parameterName) { ArgumentException e = new ArgumentException(Strings.InvalidStringArgument(parameterName)); return e; } static internal ArgumentNullException ArgumentNull(string parameter) { ArgumentNullException e = new ArgumentNullException(parameter); return e; } static internal InvalidOperationException InvalidOperation(string error) { InvalidOperationException e = new InvalidOperationException(error); return e; } static internal ArgumentOutOfRangeException ArgumentOutOfRange(string paramName) { return new ArgumentOutOfRangeException(paramName); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // @owner [....] // @backupOwner [....] //----------------------------------------------------------------------------- namespace System.Data.Services.Design.Common { using Microsoft.Win32; using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Configuration; using System.Data; using System.Data.Metadata.Edm; using System.Data.Objects; using System.Data.Objects.DataClasses; using System.Data.SqlTypes; using System.Diagnostics; using System.Globalization; using System.IO; using System.Reflection; using System.Runtime.ConstrainedExecution; using System.Runtime.InteropServices; using System.Runtime.Serialization; using System.Text; using System.Threading; using System.Xml; using Microsoft.SqlServer.Server; internal static class EDesignUtil { //////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// // // Helper Functions // static internal T CheckArgumentNull(T value, string parameterName) where T : class { if (null == value) { throw ArgumentNull(parameterName); } return value; } static internal void CheckStringArgument(string value, string parameterName) { // Throw ArgumentNullException when string is null CheckArgumentNull(value, parameterName); // Throw ArgumentException when string is empty if (value.Length == 0) { throw InvalidStringArgument(parameterName); } } static internal LanguageOption CheckLanguageOptionArgument(LanguageOption value, string paramName) { if (value == LanguageOption.GenerateCSharpCode || value == LanguageOption.GenerateVBCode) { return value; } throw ArgumentOutOfRange(paramName); } static internal ArgumentException InvalidStringArgument(string parameterName) { ArgumentException e = new ArgumentException(Strings.InvalidStringArgument(parameterName)); return e; } static internal ArgumentNullException ArgumentNull(string parameter) { ArgumentNullException e = new ArgumentNullException(parameter); return e; } static internal InvalidOperationException InvalidOperation(string error) { InvalidOperationException e = new InvalidOperationException(error); return e; } static internal ArgumentOutOfRangeException ArgumentOutOfRange(string paramName) { return new ArgumentOutOfRangeException(paramName); } } } // 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
- ParentControlDesigner.cs
- RenderOptions.cs
- MenuScrollingVisibilityConverter.cs
- FormViewDeletedEventArgs.cs
- FontNamesConverter.cs
- QueryHandler.cs
- View.cs
- RawContentTypeMapper.cs
- OracleFactory.cs
- TextServicesProperty.cs
- DictionaryContent.cs
- ActivationArguments.cs
- WebFaultException.cs
- ToolboxItemImageConverter.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- DNS.cs
- DoubleStorage.cs
- ListDictionaryInternal.cs
- UpdatePanelTriggerCollection.cs
- ActiveXHelper.cs
- _ScatterGatherBuffers.cs
- XmlSchemaInferenceException.cs
- SpellerInterop.cs
- HttpHandlerActionCollection.cs
- WebSysDefaultValueAttribute.cs
- AttachedAnnotation.cs
- DataGridToolTip.cs
- BitmapEffectGeneralTransform.cs
- TextDecorationLocationValidation.cs
- TextBoxAutoCompleteSourceConverter.cs
- DependencySource.cs
- UpdatePanelTriggerCollection.cs
- GuidelineCollection.cs
- InvalidProgramException.cs
- AuthenticatingEventArgs.cs
- DateTimeConverter2.cs
- EdmRelationshipRoleAttribute.cs
- SymbolPair.cs
- QilList.cs
- DeclarativeExpressionConditionDeclaration.cs
- RotateTransform3D.cs
- TrackingValidationObjectDictionary.cs
- oledbmetadatacolumnnames.cs
- ThreadStateException.cs
- TextClipboardData.cs
- MD5CryptoServiceProvider.cs
- PropertyValueUIItem.cs
- LinqDataSourceView.cs
- IconConverter.cs
- SemaphoreSlim.cs
- SystemWebExtensionsSectionGroup.cs
- WebServiceParameterData.cs
- AudioLevelUpdatedEventArgs.cs
- BamlTreeNode.cs
- TextTreeRootTextBlock.cs
- PointCollectionConverter.cs
- FormsAuthenticationUser.cs
- AuthorizationSection.cs
- CalendarBlackoutDatesCollection.cs
- SerializationBinder.cs
- Link.cs
- UdpTransportBindingElement.cs
- RepeaterItem.cs
- COAUTHIDENTITY.cs
- DataSourceCacheDurationConverter.cs
- GridViewCancelEditEventArgs.cs
- SqlDataReader.cs
- RecordsAffectedEventArgs.cs
- ListViewContainer.cs
- ActivityInterfaces.cs
- SmiEventSink_Default.cs
- SoapEnumAttribute.cs
- ListItemCollection.cs
- TableCell.cs
- Claim.cs
- ParagraphResult.cs
- SafeNativeMethodsMilCoreApi.cs
- XPathNavigatorKeyComparer.cs
- TextServicesHost.cs
- OdbcPermission.cs
- SerialReceived.cs
- CodeDirectoryCompiler.cs
- ping.cs
- SoapSchemaExporter.cs
- CompressStream.cs
- BuildResult.cs
- DynamicILGenerator.cs
- ManagedIStream.cs
- ServiceParser.cs
- UnsupportedPolicyOptionsException.cs
- RadialGradientBrush.cs
- TreeNodeStyle.cs
- XmlName.cs
- EncryptedPackage.cs
- ThaiBuddhistCalendar.cs
- SourceFileBuildProvider.cs
- TemplatingOptionsDialog.cs
- linebase.cs
- ExpressionBuilderContext.cs
- ItemsPresenter.cs