Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / EntityModel / SchemaObjectModel / TypeRefElement.cs / 1305376 / TypeRefElement.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using Som = System.Data.EntityModel.SchemaObjectModel; using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Diagnostics; using System.Globalization; using System.Xml; using System.Xml.Schema; using System.Data; using System.IO; using System.Data.Metadata.Edm; using System.Data.Entity; using System.Text; namespace System.Data.EntityModel.SchemaObjectModel { class TypeRefElement : ModelFunctionTypeElement { #region constructor ////// /// /// internal TypeRefElement(SchemaElement parentElement) : base(parentElement) { } #endregion protected override bool HandleAttribute(XmlReader reader) { if (base.HandleAttribute(reader)) { return true; } else if (CanHandleAttribute(reader, XmlConstants.TypeElement)) { HandleTypeAttribute(reader); return true; } return false; } protected void HandleTypeAttribute(XmlReader reader) { Debug.Assert(reader != null); string type; if (!Utils.GetString(Schema, reader, out type)) return; if (!Utils.ValidateDottedName(Schema, reader, type)) return; _unresolvedType = type; } internal override bool ResolveNameAndSetTypeUsage(Converter.ConversionCache convertedItemCache, DictionarynewGlobalItems) { if (_type is ScalarType) //Create and store type usage for scalar type { _typeUsageBuilder.ValidateAndSetTypeUsage(_type as ScalarType, false); _typeUsage = _typeUsageBuilder.TypeUsage; return true; } else //Try to resolve edm type. If not now, it will resolve in the second pass { EdmType edmType = (EdmType)Converter.LoadSchemaElement(_type, _type.Schema.ProviderManifest, convertedItemCache, newGlobalItems); if (edmType != null) { _typeUsageBuilder.ValidateAndSetTypeUsage(edmType, false); //use typeusagebuilder so dont lose facet information _typeUsage = _typeUsageBuilder.TypeUsage; } return _typeUsage != null; } } internal override void WriteIdentity(StringBuilder builder) { Debug.Assert(UnresolvedType != null && !UnresolvedType.Trim().Equals(String.Empty)); builder.Append(UnresolvedType); } internal override TypeUsage GetTypeUsage() { Debug.Assert(_typeUsage != null); return _typeUsage; } internal override void Validate() { base.Validate(); if (_type != null && _type is ScalarType == false && _typeUsageBuilder.HasUserDefinedFacets) { //Non-scalar return type should not have Facets AddError(ErrorCode.ModelFuncionFacetOnNonScalarType, EdmSchemaErrorSeverity.Error, Strings.FacetsOnNonScalarType(_type.FQName)); } if (_type == null && _typeUsageBuilder.HasUserDefinedFacets) { //Type attribute not specified but facets exist AddError(ErrorCode.ModelFunctionIncorrectlyPlacedFacet, EdmSchemaErrorSeverity.Error, Strings.FacetDeclarationRequiresTypeAttribute); } } } } // 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
- PasswordTextContainer.cs
- CellIdBoolean.cs
- HeaderElement.cs
- Opcode.cs
- WorkerRequest.cs
- DayRenderEvent.cs
- GeneralTransform3D.cs
- FilterQuery.cs
- RevocationPoint.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- ReadingWritingEntityEventArgs.cs
- RewritingValidator.cs
- GradientStopCollection.cs
- CalendarModeChangedEventArgs.cs
- WebPartDisplayModeCollection.cs
- SectionRecord.cs
- TextContainerChangedEventArgs.cs
- FrameSecurityDescriptor.cs
- SmiEventStream.cs
- FullTextState.cs
- ExpandSegmentCollection.cs
- IntSumAggregationOperator.cs
- HebrewCalendar.cs
- Decimal.cs
- XmlUtil.cs
- HtmlTextArea.cs
- EventManager.cs
- filewebresponse.cs
- DataPointer.cs
- ServicePointManager.cs
- CustomWebEventKey.cs
- EventsTab.cs
- SqlTrackingWorkflowInstance.cs
- FormatException.cs
- SchemaImporterExtensionsSection.cs
- DataDesignUtil.cs
- ToolStripItemTextRenderEventArgs.cs
- LineBreakRecord.cs
- BmpBitmapDecoder.cs
- XmlDataContract.cs
- DatagridviewDisplayedBandsData.cs
- ToolStripAdornerWindowService.cs
- ExceptionValidationRule.cs
- FormClosedEvent.cs
- StringArrayConverter.cs
- Marshal.cs
- IOException.cs
- ServerValidateEventArgs.cs
- RIPEMD160Managed.cs
- SecurityException.cs
- JsonByteArrayDataContract.cs
- GZipStream.cs
- TextComposition.cs
- DefaultBindingPropertyAttribute.cs
- HtmlToClrEventProxy.cs
- entitydatasourceentitysetnameconverter.cs
- ColorMap.cs
- NameNode.cs
- EmptyElement.cs
- ConfigurationCollectionAttribute.cs
- OperatingSystemVersionCheck.cs
- MergeLocalizationDirectives.cs
- Int32Collection.cs
- XmlCDATASection.cs
- FunctionCommandText.cs
- DataViewListener.cs
- SamlConditions.cs
- CompiledQueryCacheKey.cs
- Collection.cs
- Main.cs
- BitmapDownload.cs
- ItemCheckedEvent.cs
- DataGrid.cs
- FirstMatchCodeGroup.cs
- MemberRelationshipService.cs
- TypeToArgumentTypeConverter.cs
- ConstraintConverter.cs
- WebException.cs
- DataGridViewColumnEventArgs.cs
- CodeCommentStatementCollection.cs
- ButtonChrome.cs
- XNodeNavigator.cs
- StringResourceManager.cs
- BooleanStorage.cs
- FileCodeGroup.cs
- TransactionChannelListener.cs
- EtwTrace.cs
- KeyboardEventArgs.cs
- ProjectionCamera.cs
- SerTrace.cs
- DataFormats.cs
- CompositeDuplexElement.cs
- FrugalList.cs
- MemoryPressure.cs
- Vector3DAnimation.cs
- OuterGlowBitmapEffect.cs
- EncoderFallback.cs
- StorageEndPropertyMapping.cs
- HideDisabledControlAdapter.cs
- StreamMarshaler.cs