Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Data / System / Data / SqlClient / SqlUdtInfo.cs / 2 / SqlUdtInfo.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All Rights Reserved. // Information Contained Herein is Proprietary and Confidential. // //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data.SqlClient { using System; using System.Collections; using System.Data.Common; using System.Data.Sql; using System.Data.SqlTypes; using System.Diagnostics; using System.Text; using System.IO; using System.Reflection; using System.Runtime.InteropServices; using System.Runtime.Serialization; using System.Runtime.Serialization.Formatters.Binary; using System.Reflection.Emit; using System.Security.Permissions; using Microsoft.SqlServer.Server; internal class SqlUdtInfo { internal readonly Microsoft.SqlServer.Server.Format SerializationFormat; internal readonly bool IsByteOrdered; internal readonly bool IsFixedLength; internal readonly int MaxByteSize; internal readonly string Name; internal readonly string ValidationMethodName; private SqlUdtInfo(Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute attr) { SerializationFormat = (Microsoft.SqlServer.Server.Format)attr.Format; IsByteOrdered = attr.IsByteOrdered; IsFixedLength = attr.IsFixedLength; MaxByteSize = attr.MaxByteSize; Name = attr.Name; ValidationMethodName= attr.ValidationMethodName; } internal static SqlUdtInfo GetFromType(Type target) { SqlUdtInfo udtAttr = TryGetFromType(target); if (udtAttr == null) { throw InvalidUdtException.Create(target, Res.SqlUdtReason_NoUdtAttribute); } return udtAttr; } internal static SqlUdtInfo TryGetFromType(Type target) { SqlUdtInfo udtAttr = null; object[] attr = target.GetCustomAttributes(typeof(Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute), false); if (attr != null && attr.Length == 1) { udtAttr = new SqlUdtInfo((Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute) attr[0]); } return udtAttr; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All Rights Reserved. // Information Contained Herein is Proprietary and Confidential. // //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data.SqlClient { using System; using System.Collections; using System.Data.Common; using System.Data.Sql; using System.Data.SqlTypes; using System.Diagnostics; using System.Text; using System.IO; using System.Reflection; using System.Runtime.InteropServices; using System.Runtime.Serialization; using System.Runtime.Serialization.Formatters.Binary; using System.Reflection.Emit; using System.Security.Permissions; using Microsoft.SqlServer.Server; internal class SqlUdtInfo { internal readonly Microsoft.SqlServer.Server.Format SerializationFormat; internal readonly bool IsByteOrdered; internal readonly bool IsFixedLength; internal readonly int MaxByteSize; internal readonly string Name; internal readonly string ValidationMethodName; private SqlUdtInfo(Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute attr) { SerializationFormat = (Microsoft.SqlServer.Server.Format)attr.Format; IsByteOrdered = attr.IsByteOrdered; IsFixedLength = attr.IsFixedLength; MaxByteSize = attr.MaxByteSize; Name = attr.Name; ValidationMethodName= attr.ValidationMethodName; } internal static SqlUdtInfo GetFromType(Type target) { SqlUdtInfo udtAttr = TryGetFromType(target); if (udtAttr == null) { throw InvalidUdtException.Create(target, Res.SqlUdtReason_NoUdtAttribute); } return udtAttr; } internal static SqlUdtInfo TryGetFromType(Type target) { SqlUdtInfo udtAttr = null; object[] attr = target.GetCustomAttributes(typeof(Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute), false); if (attr != null && attr.Length == 1) { udtAttr = new SqlUdtInfo((Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute) attr[0]); } return udtAttr; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SecurityTokenResolver.cs
- HttpResponse.cs
- NativeMethods.cs
- OptimizerPatterns.cs
- NavigationHelper.cs
- mediaclock.cs
- NavigationProperty.cs
- WSHttpBindingBase.cs
- BuildManagerHost.cs
- NavigationPropertyEmitter.cs
- ThreadSafeList.cs
- Cursor.cs
- CatalogPartCollection.cs
- AnimatedTypeHelpers.cs
- Activity.cs
- XMLUtil.cs
- GraphicsPath.cs
- DispatcherExceptionEventArgs.cs
- BuildResultCache.cs
- RevocationPoint.cs
- SafeNativeMethods.cs
- ListMarkerSourceInfo.cs
- GlobalProxySelection.cs
- SystemException.cs
- Filter.cs
- HtmlEmptyTagControlBuilder.cs
- ExpressionVisitor.cs
- WebBrowserPermission.cs
- ProfileSection.cs
- PositiveTimeSpanValidatorAttribute.cs
- ObjectConverter.cs
- ParagraphVisual.cs
- IFormattable.cs
- TryLoadRunnableWorkflowCommand.cs
- RowBinding.cs
- dataobject.cs
- LinqDataSourceInsertEventArgs.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- MetaChildrenColumn.cs
- DateTimeValueSerializer.cs
- SafeIUnknown.cs
- AnchorEditor.cs
- UxThemeWrapper.cs
- ButtonPopupAdapter.cs
- IPPacketInformation.cs
- SmiContextFactory.cs
- ArrangedElementCollection.cs
- DbProviderFactoriesConfigurationHandler.cs
- DirectoryObjectSecurity.cs
- ProfileSettingsCollection.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- DataControlFieldCell.cs
- ValidatingCollection.cs
- RowToParametersTransformer.cs
- TextShapeableCharacters.cs
- DataGridViewColumnCollection.cs
- DataProtectionSecurityStateEncoder.cs
- UniformGrid.cs
- SrgsDocumentParser.cs
- StaticTextPointer.cs
- CombinedGeometry.cs
- _NestedSingleAsyncResult.cs
- ModelPropertyImpl.cs
- ObjectDataProvider.cs
- NativeMethodsOther.cs
- OuterGlowBitmapEffect.cs
- linebase.cs
- DNS.cs
- Trace.cs
- PreservationFileWriter.cs
- Multiply.cs
- InvalidDataException.cs
- cache.cs
- ErrorStyle.cs
- InfoCardRSACryptoProvider.cs
- PackagingUtilities.cs
- CountdownEvent.cs
- FontInfo.cs
- WebServiceResponse.cs
- WorkflowInstanceExtensionCollection.cs
- AvTraceFormat.cs
- TextRunTypographyProperties.cs
- ErrorHandler.cs
- EventListenerClientSide.cs
- Int32Rect.cs
- CompilerGlobalScopeAttribute.cs
- KeyInfo.cs
- VariableBinder.cs
- SetStoryboardSpeedRatio.cs
- Point3DAnimationBase.cs
- WebPartManager.cs
- LinkLabelLinkClickedEvent.cs
- StylusButtonCollection.cs
- Interlocked.cs
- BitmapEffectGroup.cs
- LookupBindingPropertiesAttribute.cs
- RangeValuePattern.cs
- Visual3DCollection.cs
- Events.cs
- MaterialGroup.cs