Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / 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
- DynamicActionMessageFilter.cs
- EntitySqlQueryState.cs
- FilterableAttribute.cs
- DBCSCodePageEncoding.cs
- WebPartManager.cs
- BinaryMethodMessage.cs
- SchemaEntity.cs
- COSERVERINFO.cs
- Roles.cs
- SymmetricKeyWrap.cs
- DetailsViewInsertEventArgs.cs
- AngleUtil.cs
- EmptyEnumerable.cs
- SignatureHelper.cs
- TranslateTransform3D.cs
- RemotingException.cs
- XslAstAnalyzer.cs
- ListControl.cs
- AsyncDataRequest.cs
- ZoneMembershipCondition.cs
- TagMapInfo.cs
- Image.cs
- Normalization.cs
- Int32Collection.cs
- GACMembershipCondition.cs
- PrintDialog.cs
- NullableFloatMinMaxAggregationOperator.cs
- PeerUnsafeNativeCryptMethods.cs
- TextEditor.cs
- MappedMetaModel.cs
- ImageFormat.cs
- Constraint.cs
- Inline.cs
- BindingNavigatorDesigner.cs
- PanelStyle.cs
- Dispatcher.cs
- mongolianshape.cs
- Compress.cs
- Fx.cs
- Message.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- ContentType.cs
- MatrixKeyFrameCollection.cs
- CodeNamespaceCollection.cs
- ReadingWritingEntityEventArgs.cs
- SoapFormatExtensions.cs
- DataServiceCollectionOfT.cs
- SpeechAudioFormatInfo.cs
- _ShellExpression.cs
- UserPreferenceChangingEventArgs.cs
- EntityClientCacheKey.cs
- PropertyValueUIItem.cs
- DataDocumentXPathNavigator.cs
- OptionalColumn.cs
- DebugView.cs
- DataServiceProcessingPipeline.cs
- LineServicesRun.cs
- GenericAuthenticationEventArgs.cs
- CqlParserHelpers.cs
- ContainerVisual.cs
- OleStrCAMarshaler.cs
- MailWriter.cs
- ImageConverter.cs
- ConfigXmlWhitespace.cs
- DataGridAutoGeneratingColumnEventArgs.cs
- MaskInputRejectedEventArgs.cs
- WebBrowserDocumentCompletedEventHandler.cs
- RegistryPermission.cs
- ListItemCollection.cs
- DebuggerAttributes.cs
- TreeBuilderBamlTranslator.cs
- InternalsVisibleToAttribute.cs
- DataGridViewTextBoxEditingControl.cs
- GPStream.cs
- MapPathBasedVirtualPathProvider.cs
- BevelBitmapEffect.cs
- DebuggerAttributes.cs
- MailMessageEventArgs.cs
- OperationDescriptionCollection.cs
- LicenseManager.cs
- ExecutionPropertyManager.cs
- SHA1.cs
- PerformanceCounterPermissionEntry.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- InternalException.cs
- AsyncSerializedWorker.cs
- BlobPersonalizationState.cs
- AssociationSet.cs
- TreeNodeStyle.cs
- CachedFontFace.cs
- TreeNodeBinding.cs
- XPathDescendantIterator.cs
- ActionMessageFilterTable.cs
- Cursor.cs
- _HeaderInfoTable.cs
- DesignTimeParseData.cs
- HandoffBehavior.cs
- ConfigurationManager.cs
- HighlightOverlayGlyph.cs
- SafePEFileHandle.cs