Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Data / System / Data / SqlClient / SqlUdtInfo.cs / 1 / 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
- MultipartIdentifier.cs
- DebugView.cs
- RemotingSurrogateSelector.cs
- EDesignUtil.cs
- FixedElement.cs
- SignedXml.cs
- BookmarkManager.cs
- HighlightComponent.cs
- WindowProviderWrapper.cs
- ImmutableObjectAttribute.cs
- ConstrainedDataObject.cs
- MemberDomainMap.cs
- MetaModel.cs
- ValueConversionAttribute.cs
- BlockExpression.cs
- BamlBinaryReader.cs
- ContractComponent.cs
- DetailsViewCommandEventArgs.cs
- TextSyndicationContentKindHelper.cs
- SimpleTextLine.cs
- Window.cs
- ColumnTypeConverter.cs
- OperationInvokerBehavior.cs
- SineEase.cs
- glyphs.cs
- RTLAwareMessageBox.cs
- _CookieModule.cs
- DataComponentGenerator.cs
- BinaryWriter.cs
- ProfileSettings.cs
- SchemaElement.cs
- GrammarBuilderPhrase.cs
- FixedTextContainer.cs
- ColumnCollection.cs
- TabletDevice.cs
- MessageQueueInstaller.cs
- AutoResizedEvent.cs
- MediaContext.cs
- XmlILOptimizerVisitor.cs
- FatalException.cs
- ValidatorCollection.cs
- DelayedRegex.cs
- DPTypeDescriptorContext.cs
- DynamicMetaObject.cs
- InputProcessorProfilesLoader.cs
- BamlRecordReader.cs
- CryptoApi.cs
- DetailsViewUpdateEventArgs.cs
- ISAPIApplicationHost.cs
- HttpCookieCollection.cs
- SmiContextFactory.cs
- Setter.cs
- FormViewUpdatedEventArgs.cs
- CodeLabeledStatement.cs
- IdnElement.cs
- ResXDataNode.cs
- WorkflowHostingEndpoint.cs
- DbConnectionPoolIdentity.cs
- SuppressMergeCheckAttribute.cs
- InternalConfigEventArgs.cs
- SqlLiftWhereClauses.cs
- EventSourceCreationData.cs
- XmlIncludeAttribute.cs
- SchemaNames.cs
- ThumbButtonInfo.cs
- NamespaceImport.cs
- DataFieldEditor.cs
- EntityDataSourceReferenceGroup.cs
- GB18030Encoding.cs
- HttpBrowserCapabilitiesWrapper.cs
- LocalizationComments.cs
- DataExpression.cs
- ReadOnlyCollectionBuilder.cs
- NetworkInterface.cs
- VirtualizingPanel.cs
- SqlTrackingService.cs
- ElementsClipboardData.cs
- StringExpressionSet.cs
- Msec.cs
- VBCodeProvider.cs
- ComponentRenameEvent.cs
- DataGridHeaderBorder.cs
- ListBoxItemWrapperAutomationPeer.cs
- XmlAnyElementAttributes.cs
- DataServiceQueryProvider.cs
- AppSettingsReader.cs
- errorpatternmatcher.cs
- OptimalBreakSession.cs
- WrapperSecurityCommunicationObject.cs
- ConditionValidator.cs
- QuaternionAnimationUsingKeyFrames.cs
- DecoderFallback.cs
- UndoManager.cs
- DesignColumnCollection.cs
- IdentifierCollection.cs
- ColumnResizeUndoUnit.cs
- DataFieldConverter.cs
- EntityDataSourceChangedEventArgs.cs
- BuiltInPermissionSets.cs
- KeyValueInternalCollection.cs