Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataEntityDesign / Design / System / Data / EntityModel / Emitters / Emitter.cs / 2 / 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
- FormView.cs
- TextBoxAutoCompleteSourceConverter.cs
- LongSumAggregationOperator.cs
- TemplateKeyConverter.cs
- DbgUtil.cs
- AssemblyAttributesGoHere.cs
- Interlocked.cs
- UIElementParaClient.cs
- Baml6ConstructorInfo.cs
- SpeechRecognitionEngine.cs
- FormsAuthentication.cs
- ConditionCollection.cs
- DetailsViewRowCollection.cs
- DefaultValueMapping.cs
- CharEntityEncoderFallback.cs
- ConversionContext.cs
- Positioning.cs
- UdpTransportSettingsElement.cs
- MobileCategoryAttribute.cs
- SoapCodeExporter.cs
- WindowsAuthenticationEventArgs.cs
- AsymmetricSecurityProtocolFactory.cs
- ImageList.cs
- NetTcpSectionData.cs
- EntityDesignerUtils.cs
- ServiceHttpModule.cs
- COAUTHIDENTITY.cs
- XamlSerializerUtil.cs
- RootAction.cs
- SupportsPreviewControlAttribute.cs
- TemplateFactory.cs
- DecoratedNameAttribute.cs
- SiteMapProvider.cs
- ItemsPresenter.cs
- DataMemberFieldEditor.cs
- BindUriHelper.cs
- Delegate.cs
- WorkflowServiceBehavior.cs
- SQLBinaryStorage.cs
- ZipIOLocalFileDataDescriptor.cs
- MediaPlayer.cs
- Control.cs
- SqlInternalConnection.cs
- Rect3D.cs
- ModifierKeysConverter.cs
- WriteTimeStream.cs
- SyndicationSerializer.cs
- PrimaryKeyTypeConverter.cs
- XmlFormatExtensionPrefixAttribute.cs
- Slider.cs
- AssemblyCacheEntry.cs
- MailWebEventProvider.cs
- X500Name.cs
- ContentPresenter.cs
- AssemblyResourceLoader.cs
- ComboBox.cs
- SqlDataReader.cs
- DesignerWidgets.cs
- HelloMessage11.cs
- RemotingConfigParser.cs
- PropertyOrder.cs
- MonikerSyntaxException.cs
- XmlSchemaSimpleTypeUnion.cs
- ConnectionString.cs
- Vector3D.cs
- XmlArrayAttribute.cs
- SendMailErrorEventArgs.cs
- SwitchElementsCollection.cs
- OuterGlowBitmapEffect.cs
- WriterOutput.cs
- PaintValueEventArgs.cs
- WebServiceMethodData.cs
- Documentation.cs
- AutoResetEvent.cs
- MatcherBuilder.cs
- CommandDevice.cs
- Metadata.cs
- Site.cs
- WindowsGrip.cs
- ParsedAttributeCollection.cs
- DataSetMappper.cs
- DocComment.cs
- MergablePropertyAttribute.cs
- CombinedTcpChannel.cs
- BaseInfoTable.cs
- CompiledXpathExpr.cs
- RepeatButton.cs
- Utils.cs
- NonSerializedAttribute.cs
- AssociatedControlConverter.cs
- EventManager.cs
- HttpCacheVary.cs
- FormsIdentity.cs
- LocalizedNameDescriptionPair.cs
- XPathNavigator.cs
- DependencyPropertyKind.cs
- DrawingContext.cs
- DeferredTextReference.cs
- MatchAttribute.cs
- CasesDictionary.cs