Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataEntity / System / Data / EntityModel / SchemaObjectModel / FacetDescriptionElement.cs / 1 / FacetDescriptionElement.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Text; using System.Data.Metadata.Edm; using System.Xml; using System.Diagnostics; namespace System.Data.EntityModel.SchemaObjectModel { internal abstract class FacetDescriptionElement : SchemaElement { int? _minValue; int? _maxValue; object _defaultValue; bool _isConstant; // won't be populated till you call CreateAndValidate FacetDescription _facetDescription; public FacetDescriptionElement(TypeElement type, string name) : base(type, name) { } protected override bool ProhibitAttribute(string namespaceUri, string localName) { if (base.ProhibitAttribute(namespaceUri, localName)) { return true; } if (namespaceUri == null && localName == XmlConstants.Name) { return false; } return false; } protected override bool HandleAttribute(XmlReader reader) { if (base.HandleAttribute(reader)) { return true; } else if (CanHandleAttribute(reader, XmlConstants.MinimumAttribute)) { HandleMinimumAttribute(reader); return true; } else if (CanHandleAttribute(reader, XmlConstants.MaximumAttribute)) { HandleMaximumAttribute(reader); return true; } else if (CanHandleAttribute(reader, XmlConstants.DefaultValueAttribute)) { HandleDefaultAttribute(reader); return true; } else if (CanHandleAttribute(reader, XmlConstants.ConstantAttribute)) { HandleConstantAttribute(reader); return true; } return false; } ///////////////////////////////////////////////////////////////////// // Attribute Handlers ////// Handler for the Minimum attribute /// /// xml reader currently positioned at Minimum attribute protected void HandleMinimumAttribute(XmlReader reader) { int value = -1; if (HandleIntAttribute(reader, ref value)) { _minValue = value; } } ////// Handler for the Maximum attribute /// /// xml reader currently positioned at Maximum attribute protected void HandleMaximumAttribute(XmlReader reader) { int value = -1; if (HandleIntAttribute(reader, ref value)) { _maxValue = value; } } ////// Handler for the Default attribute /// /// xml reader currently positioned at Default attribute protected abstract void HandleDefaultAttribute(XmlReader reader); ////// Handler for the Constant attribute /// /// xml reader currently positioned at Constant attribute protected void HandleConstantAttribute(XmlReader reader) { bool value = false; if (HandleBoolAttribute(reader, ref value)) { _isConstant = value; } } public abstract EdmType FacetType{ get; } public int? MinValue { get { return _minValue; } } public int? MaxValue { get { return _maxValue; } } public object DefaultValue { get { return _defaultValue; } set { _defaultValue = value; } } public FacetDescription FacetDescription { get { Debug.Assert(_facetDescription != null, "Did you forget to call CreateAndValidate first?"); return _facetDescription; } } internal void CreateAndValidateFacetDescription(string declaringTypeName) { _facetDescription = new FacetDescription(Name, FacetType, MinValue, MaxValue, DefaultValue, _isConstant, declaringTypeName); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Text; using System.Data.Metadata.Edm; using System.Xml; using System.Diagnostics; namespace System.Data.EntityModel.SchemaObjectModel { internal abstract class FacetDescriptionElement : SchemaElement { int? _minValue; int? _maxValue; object _defaultValue; bool _isConstant; // won't be populated till you call CreateAndValidate FacetDescription _facetDescription; public FacetDescriptionElement(TypeElement type, string name) : base(type, name) { } protected override bool ProhibitAttribute(string namespaceUri, string localName) { if (base.ProhibitAttribute(namespaceUri, localName)) { return true; } if (namespaceUri == null && localName == XmlConstants.Name) { return false; } return false; } protected override bool HandleAttribute(XmlReader reader) { if (base.HandleAttribute(reader)) { return true; } else if (CanHandleAttribute(reader, XmlConstants.MinimumAttribute)) { HandleMinimumAttribute(reader); return true; } else if (CanHandleAttribute(reader, XmlConstants.MaximumAttribute)) { HandleMaximumAttribute(reader); return true; } else if (CanHandleAttribute(reader, XmlConstants.DefaultValueAttribute)) { HandleDefaultAttribute(reader); return true; } else if (CanHandleAttribute(reader, XmlConstants.ConstantAttribute)) { HandleConstantAttribute(reader); return true; } return false; } ///////////////////////////////////////////////////////////////////// // Attribute Handlers ////// Handler for the Minimum attribute /// /// xml reader currently positioned at Minimum attribute protected void HandleMinimumAttribute(XmlReader reader) { int value = -1; if (HandleIntAttribute(reader, ref value)) { _minValue = value; } } ////// Handler for the Maximum attribute /// /// xml reader currently positioned at Maximum attribute protected void HandleMaximumAttribute(XmlReader reader) { int value = -1; if (HandleIntAttribute(reader, ref value)) { _maxValue = value; } } ////// Handler for the Default attribute /// /// xml reader currently positioned at Default attribute protected abstract void HandleDefaultAttribute(XmlReader reader); ////// Handler for the Constant attribute /// /// xml reader currently positioned at Constant attribute protected void HandleConstantAttribute(XmlReader reader) { bool value = false; if (HandleBoolAttribute(reader, ref value)) { _isConstant = value; } } public abstract EdmType FacetType{ get; } public int? MinValue { get { return _minValue; } } public int? MaxValue { get { return _maxValue; } } public object DefaultValue { get { return _defaultValue; } set { _defaultValue = value; } } public FacetDescription FacetDescription { get { Debug.Assert(_facetDescription != null, "Did you forget to call CreateAndValidate first?"); return _facetDescription; } } internal void CreateAndValidateFacetDescription(string declaringTypeName) { _facetDescription = new FacetDescription(Name, FacetType, MinValue, MaxValue, DefaultValue, _isConstant, declaringTypeName); } } } // 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
- BitmapFrameEncode.cs
- TypeToken.cs
- Win32SafeHandles.cs
- DataTableCollection.cs
- OrderedEnumerableRowCollection.cs
- XXXOnTypeBuilderInstantiation.cs
- ManagedIStream.cs
- SiteMapSection.cs
- NestedContainer.cs
- XmlCharCheckingReader.cs
- ProgressBarHighlightConverter.cs
- PrintDocument.cs
- LabelLiteral.cs
- TableHeaderCell.cs
- FormsAuthenticationConfiguration.cs
- BamlRecordHelper.cs
- UxThemeWrapper.cs
- RegexFCD.cs
- DetailsViewPageEventArgs.cs
- TextCompositionManager.cs
- SystemPens.cs
- BuildProvider.cs
- ParenthesizePropertyNameAttribute.cs
- RIPEMD160.cs
- DispatcherFrame.cs
- ScriptReference.cs
- ResourceIDHelper.cs
- ExpressionLink.cs
- XmlAnyElementAttributes.cs
- AuthenticationServiceManager.cs
- Unit.cs
- OAVariantLib.cs
- _ShellExpression.cs
- DesignTimeTemplateParser.cs
- TransactionOptions.cs
- DataGrid.cs
- ReferencedCollectionType.cs
- Rect3DConverter.cs
- Inflater.cs
- KeyToListMap.cs
- Schema.cs
- WebPartTransformer.cs
- PageThemeParser.cs
- FileLoadException.cs
- WindowsAuthenticationModule.cs
- GeneralTransform3D.cs
- DesignTimeTemplateParser.cs
- SchemaElementLookUpTable.cs
- SetterBase.cs
- sqlser.cs
- DataGridViewCellPaintingEventArgs.cs
- EntityDataSourceUtil.cs
- SeekableReadStream.cs
- PeerCollaboration.cs
- TreeNodeBinding.cs
- QilInvoke.cs
- EntityTransaction.cs
- AccessDataSourceView.cs
- BridgeDataRecord.cs
- Confirm.cs
- RemotingServices.cs
- GenericXmlSecurityToken.cs
- FontStyles.cs
- _OSSOCK.cs
- ManipulationBoundaryFeedbackEventArgs.cs
- ValidatorCompatibilityHelper.cs
- WebPartVerbsEventArgs.cs
- EditableLabelControl.cs
- PolicyLevel.cs
- WrappedIUnknown.cs
- Expander.cs
- XmlAttributeCollection.cs
- Model3DGroup.cs
- HttpProfileBase.cs
- TypeTypeConverter.cs
- CodeParameterDeclarationExpression.cs
- RootBuilder.cs
- SqlDependencyListener.cs
- SqlDataSourceWizardForm.cs
- BitmapImage.cs
- JoinCqlBlock.cs
- LinkedResource.cs
- DateTimeSerializationSection.cs
- SqlNotificationRequest.cs
- SqlBulkCopy.cs
- TabletDevice.cs
- SafeArrayRankMismatchException.cs
- DataGridViewRowPostPaintEventArgs.cs
- ReadOnlyDictionary.cs
- ForceCopyBuildProvider.cs
- CodeCompileUnit.cs
- CodeChecksumPragma.cs
- COM2IProvidePropertyBuilderHandler.cs
- CqlBlock.cs
- DataSourceCache.cs
- ConnectivityStatus.cs
- ImpersonationContext.cs
- CellQuery.cs
- XamlGridLengthSerializer.cs
- AdRotator.cs