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
- RadioButtonFlatAdapter.cs
- AuthenticationManager.cs
- Method.cs
- PropertyMapper.cs
- ILGen.cs
- ConfigurationLocationCollection.cs
- DbConnectionPoolIdentity.cs
- FixedFindEngine.cs
- PageBreakRecord.cs
- TableRowCollection.cs
- WindowsEditBoxRange.cs
- WebPartTransformerCollection.cs
- TransformerConfigurationWizardBase.cs
- SafePointer.cs
- SqlClientWrapperSmiStream.cs
- FunctionImportMapping.cs
- XmlSortKey.cs
- RecordBuilder.cs
- CrossSiteScriptingValidation.cs
- SmtpSection.cs
- SqlRecordBuffer.cs
- MarkupExtensionReturnTypeAttribute.cs
- SequenceDesigner.cs
- InputLanguageManager.cs
- ResolveNextArgumentWorkItem.cs
- PrintingPermissionAttribute.cs
- DrawingAttributes.cs
- AppDomainProtocolHandler.cs
- SqlDataRecord.cs
- Rotation3DAnimationBase.cs
- DNS.cs
- AutomationPatternInfo.cs
- XamlTemplateSerializer.cs
- DigitalSignature.cs
- FontFamily.cs
- EntityDataSourceWrapper.cs
- DataTrigger.cs
- XmlReaderSettings.cs
- BaseDataListActionList.cs
- InfoCardSymmetricCrypto.cs
- AdornerDecorator.cs
- DataRowChangeEvent.cs
- WebException.cs
- TablePatternIdentifiers.cs
- ScriptIgnoreAttribute.cs
- TabletCollection.cs
- ApplicationFileCodeDomTreeGenerator.cs
- HtmlElementCollection.cs
- TabControlCancelEvent.cs
- MetadataSource.cs
- MonthChangedEventArgs.cs
- FtpRequestCacheValidator.cs
- BevelBitmapEffect.cs
- TableColumnCollectionInternal.cs
- VerticalAlignConverter.cs
- CSharpCodeProvider.cs
- DataBindEngine.cs
- TrustManagerPromptUI.cs
- BitmapEffectInput.cs
- DataMemberAttribute.cs
- BamlRecordWriter.cs
- InheritedPropertyChangedEventArgs.cs
- ColumnHeaderConverter.cs
- TickBar.cs
- SqlTypesSchemaImporter.cs
- WpfPayload.cs
- CodeVariableDeclarationStatement.cs
- PolygonHotSpot.cs
- ObjectCloneHelper.cs
- ScrollBar.cs
- GroupItemAutomationPeer.cs
- InfoCardPolicy.cs
- ParallelTimeline.cs
- WmlSelectionListAdapter.cs
- Normalization.cs
- WebPartConnectionsCancelEventArgs.cs
- DataSetFieldSchema.cs
- DataIdProcessor.cs
- ComplexTypeEmitter.cs
- EnumValAlphaComparer.cs
- XmlAttributeOverrides.cs
- IFormattable.cs
- DataObject.cs
- XPathDocumentIterator.cs
- ContainerActivationHelper.cs
- Column.cs
- ScaleTransform.cs
- GridViewHeaderRowPresenter.cs
- VisualTreeHelper.cs
- CalendarDateRange.cs
- ControlPropertyNameConverter.cs
- CodeLinePragma.cs
- UnsafeNativeMethods.cs
- SingleStorage.cs
- EventLogInternal.cs
- XmlnsPrefixAttribute.cs
- DebugView.cs
- Run.cs
- InvalidateEvent.cs
- TemplatedWizardStep.cs