Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataEntityDesign / Design / System / Data / EntityModel / Emitters / Emitter.cs / 1 / Emitter.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.CodeDom; using System.Diagnostics; using System.Data.EntityModel.SchemaObjectModel; namespace System.Data.EntityModel.Emitters { ////// /// internal abstract class Emitter { #region Instance Fields private ClientApiGenerator _generator = null; #endregion #region Static Fields private static CodeExpression _nullExpression = null; private static CodeExpression _thisRef = null; ///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); } internal static CodeExpression EmitEnumMemberExpression(CodeTypeReference type, string member) { CodeTypeReferenceExpression typeref = new CodeTypeReferenceExpression(type); return new CodeFieldReferenceExpression(typeref, member); } #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; using System.CodeDom; using System.Diagnostics; using System.Data.EntityModel.SchemaObjectModel; namespace System.Data.EntityModel.Emitters { ////// /// internal abstract class Emitter { #region Instance Fields private ClientApiGenerator _generator = null; #endregion #region Static Fields private static CodeExpression _nullExpression = null; private static CodeExpression _thisRef = null; ///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); } internal static CodeExpression EmitEnumMemberExpression(CodeTypeReference type, string member) { CodeTypeReferenceExpression typeref = new CodeTypeReferenceExpression(type); return new CodeFieldReferenceExpression(typeref, member); } #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
- ResolveDuplexAsyncResult.cs
- DbModificationCommandTree.cs
- ObjectHelper.cs
- TextFormatterImp.cs
- RSACryptoServiceProvider.cs
- EdgeModeValidation.cs
- RecognizedPhrase.cs
- DataGridGeneralPage.cs
- ProcessActivityTreeOptions.cs
- ReadWriteSpinLock.cs
- ConditionalExpression.cs
- Utilities.cs
- StaticFileHandler.cs
- FixedSchema.cs
- BitmapEffectGroup.cs
- ConfigXmlComment.cs
- ControlParameter.cs
- XPathNodePointer.cs
- OutputCacheSettings.cs
- LinqDataSource.cs
- figurelengthconverter.cs
- FieldNameLookup.cs
- SchemaType.cs
- DataGridViewComboBoxColumn.cs
- RepeatBehaviorConverter.cs
- WebReferencesBuildProvider.cs
- StreamingContext.cs
- ControlBuilderAttribute.cs
- FontStyleConverter.cs
- TableRowCollection.cs
- RegisteredDisposeScript.cs
- SerTrace.cs
- Win32SafeHandles.cs
- MediaElement.cs
- FormatException.cs
- DataServiceCollectionOfT.cs
- Symbol.cs
- ToolStripControlHost.cs
- XmlWrappingReader.cs
- TableLayoutPanel.cs
- AuthorizationRule.cs
- TransformerInfo.cs
- ComboBoxItem.cs
- NativeMethods.cs
- StandardOleMarshalObject.cs
- GuidTagList.cs
- ToolboxControl.cs
- ValidatorCollection.cs
- complextypematerializer.cs
- RowToParametersTransformer.cs
- TextRangeAdaptor.cs
- AsnEncodedData.cs
- FixedLineResult.cs
- NumberFormatInfo.cs
- ClientRuntime.cs
- XmlSchemaSimpleContent.cs
- DrawingGroupDrawingContext.cs
- AttachedAnnotation.cs
- MessageSmuggler.cs
- sqlser.cs
- NameTable.cs
- NestPullup.cs
- DataObject.cs
- SqlBuffer.cs
- TemplateInstanceAttribute.cs
- Crypto.cs
- ServiceDescriptionContext.cs
- SizeFConverter.cs
- XmlILIndex.cs
- TableLayout.cs
- WebPartConnectionsCancelEventArgs.cs
- SerializableAttribute.cs
- PriorityBinding.cs
- SequenceRange.cs
- DataService.cs
- RuntimeWrappedException.cs
- ContentPresenter.cs
- OutputCacheSettingsSection.cs
- TreeNodeStyleCollection.cs
- RemoteCryptoRsaServiceProvider.cs
- DesignerVerbCollection.cs
- PageTrueTypeFont.cs
- Effect.cs
- KnownBoxes.cs
- Container.cs
- KnownTypes.cs
- ScriptReferenceBase.cs
- PluralizationServiceUtil.cs
- ConstrainedDataObject.cs
- PortCache.cs
- SimpleWebHandlerParser.cs
- TraceShell.cs
- DirectoryNotFoundException.cs
- RegistryKey.cs
- RadioButtonFlatAdapter.cs
- ClassDataContract.cs
- RangeBase.cs
- PartialCachingControl.cs
- ListItemCollection.cs
- OrderedParallelQuery.cs