Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataWeb / Design / system / Data / EntityModel / Emitters / Emitter.cs / 1305376 / 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
- COSERVERINFO.cs
- ImagingCache.cs
- COM2Properties.cs
- RoutedEventArgs.cs
- BuildProvidersCompiler.cs
- TickBar.cs
- RegistryKey.cs
- Lasso.cs
- IOException.cs
- ProfilePropertySettingsCollection.cs
- Rectangle.cs
- ToolStripTextBox.cs
- ErrorWrapper.cs
- Stack.cs
- DataObjectCopyingEventArgs.cs
- OleDbInfoMessageEvent.cs
- RowToFieldTransformer.cs
- ListenerChannelContext.cs
- SessionStateModule.cs
- DependencyObjectValidator.cs
- WebPartCloseVerb.cs
- _Semaphore.cs
- UriWriter.cs
- DateTimeFormatInfoScanner.cs
- RoleService.cs
- TemplateKey.cs
- DiscoveryVersion.cs
- Exceptions.cs
- FtpWebRequest.cs
- Quaternion.cs
- Soap.cs
- WasNotInstalledException.cs
- HttpSysSettings.cs
- X509Chain.cs
- Pair.cs
- XmlConvert.cs
- PresentationTraceSources.cs
- ByteFacetDescriptionElement.cs
- AccessKeyManager.cs
- EntityContainerEmitter.cs
- SystemUnicastIPAddressInformation.cs
- SynchronizedDispatch.cs
- SourceSwitch.cs
- ContentPlaceHolderDesigner.cs
- ImportCatalogPart.cs
- metrodevice.cs
- XmlSchemaSequence.cs
- DataGridViewSortCompareEventArgs.cs
- SymbolEqualComparer.cs
- basecomparevalidator.cs
- AutomationPattern.cs
- HtmlInputCheckBox.cs
- PopupControlService.cs
- AuthenticatedStream.cs
- WarningException.cs
- LocalServiceSecuritySettingsElement.cs
- Quad.cs
- WsatStrings.cs
- NetworkInterface.cs
- BitmapMetadataBlob.cs
- TemplateControl.cs
- XmlHierarchyData.cs
- WorkflowTransactionService.cs
- ImageInfo.cs
- PropertyPushdownHelper.cs
- PackageRelationshipSelector.cs
- DataServiceExpressionVisitor.cs
- TabPageDesigner.cs
- UserPreferenceChangedEventArgs.cs
- TextBoxRenderer.cs
- ToolStripDropTargetManager.cs
- TextElementCollection.cs
- DocumentApplicationJournalEntry.cs
- TimeoutException.cs
- AutomationIdentifier.cs
- ThrowHelper.cs
- SafePointer.cs
- InfoCardRSACryptoProvider.cs
- AdapterDictionary.cs
- BaseTemplateBuildProvider.cs
- Monitor.cs
- FixedSOMContainer.cs
- RuleSetReference.cs
- UnsafeNativeMethods.cs
- QilVisitor.cs
- ObjectSecurity.cs
- ContextMenuAutomationPeer.cs
- Point3D.cs
- MediaCommands.cs
- DynamicPhysicalDiscoSearcher.cs
- xmlglyphRunInfo.cs
- WebConfigurationFileMap.cs
- SecurityKeyType.cs
- StylusPointPropertyId.cs
- DecoderFallback.cs
- SafeFileMapViewHandle.cs
- UIElement3D.cs
- FileAccessException.cs
- DataSourceGroupCollection.cs
- GlyphsSerializer.cs