Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataWeb / Design / system / Data / EntityModel / Emitters / Emitter.cs / 1 / Emitter.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.CodeDom; namespace System.Data.EntityModel.Emitters { ////// /// internal abstract class Emitter { #region Instance Fields private ClientApiGenerator _generator; #endregion #region Static Fields private static CodeExpression _nullExpression; private static CodeExpression _thisRef; ///Name of property used to get StorageContext from an Entity private const string EntityGetContextPropertyName = "Context"; ///Name of property used to get StorageContext from a StorageSearcher protected const string SearcherGetContextPropertyName = "Context"; #endregion #region Protected Methods ////// /// /// protected Emitter(ClientApiGenerator generator) { Generator = generator; } ////// /// /// ///protected static CodeBinaryOperatorExpression EmitExpressionEqualsNull(CodeExpression expression) { return new CodeBinaryOperatorExpression(expression, CodeBinaryOperatorType.IdentityEquality, NullExpression); } protected static CodeBinaryOperatorExpression EmitExpressionDoesNotEqualNull(CodeExpression expression) { return new CodeBinaryOperatorExpression(expression, CodeBinaryOperatorType.IdentityInequality, NullExpression); } #endregion #region Protected Properties /// /// /// protected static CodeExpression ThisRef { get { if (_thisRef == null) _thisRef = new CodeThisReferenceExpression(); return _thisRef; } } ////// /// internal ClientApiGenerator Generator { get { return _generator; } private set { _generator = value; } } protected TypeReference TypeReference { get { return _generator.TypeReference; } } protected AttributeEmitter AttributeEmitter { get { return _generator.AttributeEmitter; } } protected static CodeExpression NullExpression { get { if (_nullExpression == null) _nullExpression = new CodePrimitiveExpression(null); return _nullExpression; } } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.CodeDom; namespace System.Data.EntityModel.Emitters { ////// /// internal abstract class Emitter { #region Instance Fields private ClientApiGenerator _generator; #endregion #region Static Fields private static CodeExpression _nullExpression; private static CodeExpression _thisRef; ///Name of property used to get StorageContext from an Entity private const string EntityGetContextPropertyName = "Context"; ///Name of property used to get StorageContext from a StorageSearcher protected const string SearcherGetContextPropertyName = "Context"; #endregion #region Protected Methods ////// /// /// protected Emitter(ClientApiGenerator generator) { Generator = generator; } ////// /// /// ///protected static CodeBinaryOperatorExpression EmitExpressionEqualsNull(CodeExpression expression) { return new CodeBinaryOperatorExpression(expression, CodeBinaryOperatorType.IdentityEquality, NullExpression); } protected static CodeBinaryOperatorExpression EmitExpressionDoesNotEqualNull(CodeExpression expression) { return new CodeBinaryOperatorExpression(expression, CodeBinaryOperatorType.IdentityInequality, NullExpression); } #endregion #region Protected Properties /// /// /// protected static CodeExpression ThisRef { get { if (_thisRef == null) _thisRef = new CodeThisReferenceExpression(); return _thisRef; } } ////// /// internal ClientApiGenerator Generator { get { return _generator; } private set { _generator = value; } } protected TypeReference TypeReference { get { return _generator.TypeReference; } } protected AttributeEmitter AttributeEmitter { get { return _generator.AttributeEmitter; } } protected static CodeExpression NullExpression { get { if (_nullExpression == null) _nullExpression = new CodePrimitiveExpression(null); return _nullExpression; } } #endregion } } // 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
- ProfileService.cs
- AssemblyHelper.cs
- NetworkInformationPermission.cs
- MetadataItemEmitter.cs
- QueryActivatableWorkflowsCommand.cs
- XpsS0ValidatingLoader.cs
- DataSourceProvider.cs
- OleDbStruct.cs
- FontCollection.cs
- XmlSchemaSimpleTypeUnion.cs
- ColumnReorderedEventArgs.cs
- MaterialGroup.cs
- SqlDataSourceQueryConverter.cs
- DataGridTextBoxColumn.cs
- MinimizableAttributeTypeConverter.cs
- WindowHideOrCloseTracker.cs
- SqlCacheDependencyDatabase.cs
- Matrix3DConverter.cs
- TextParagraph.cs
- ThicknessConverter.cs
- ToolStripOverflowButton.cs
- XmlExceptionHelper.cs
- SiteOfOriginContainer.cs
- Frame.cs
- SHA1.cs
- ListViewDeletedEventArgs.cs
- XPathNodePointer.cs
- ItemCheckEvent.cs
- UDPClient.cs
- Rss20ItemFormatter.cs
- ResolveDuplexCD1AsyncResult.cs
- EntityDataSourceUtil.cs
- ToggleProviderWrapper.cs
- DataFormats.cs
- ColorTransformHelper.cs
- SelectedGridItemChangedEvent.cs
- PtsContext.cs
- DocumentReference.cs
- JsonSerializer.cs
- DefaultObjectMappingItemCollection.cs
- DynamicPropertyHolder.cs
- WindowsFormsLinkLabel.cs
- While.cs
- FunctionQuery.cs
- ComplusTypeValidator.cs
- HierarchicalDataBoundControl.cs
- TemplateControlParser.cs
- XmlSchemaElement.cs
- WindowsStatusBar.cs
- FileLoadException.cs
- DeclarativeCatalogPart.cs
- MdImport.cs
- ItemsPresenter.cs
- EntityDataSourceContainerNameItem.cs
- FixUp.cs
- ValidatingReaderNodeData.cs
- PreProcessor.cs
- WebPartEditVerb.cs
- Track.cs
- Exception.cs
- WindowsFont.cs
- DataGridAddNewRow.cs
- _WebProxyDataBuilder.cs
- ThreadInterruptedException.cs
- BatchStream.cs
- Panel.cs
- ReliableChannelListener.cs
- FrameDimension.cs
- AddInController.cs
- HandlerWithFactory.cs
- NetworkAddressChange.cs
- DataException.cs
- _IPv6Address.cs
- KeyProperty.cs
- MailWebEventProvider.cs
- TypeUtil.cs
- LayoutEngine.cs
- InvalidProgramException.cs
- LongTypeConverter.cs
- ProxyWebPartConnectionCollection.cs
- FontStyle.cs
- WebPartConnection.cs
- Int32RectValueSerializer.cs
- FormCollection.cs
- PolyLineSegment.cs
- entityreference_tresulttype.cs
- ComponentManagerBroker.cs
- KnownBoxes.cs
- SoapFormatterSinks.cs
- InternalRelationshipCollection.cs
- SerializerDescriptor.cs
- BufferModesCollection.cs
- XmlAttributes.cs
- KeyValueConfigurationElement.cs
- Invariant.cs
- MetadataFile.cs
- InsufficientMemoryException.cs
- Util.cs
- VBIdentifierTrimConverter.cs
- UInt16Converter.cs