Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- UiaCoreTypesApi.cs
- ChangePassword.cs
- HitTestWithPointDrawingContextWalker.cs
- Listbox.cs
- PropertyGridCommands.cs
- ToolStripGripRenderEventArgs.cs
- BaseValidator.cs
- MultipartContentParser.cs
- cookiecollection.cs
- TargetControlTypeCache.cs
- ColumnMapProcessor.cs
- RotateTransform.cs
- Menu.cs
- IgnoreFileBuildProvider.cs
- XmlSerializerAssemblyAttribute.cs
- DataGridPagingPage.cs
- EmulateRecognizeCompletedEventArgs.cs
- UpdatePanelTrigger.cs
- SerialPinChanges.cs
- Schema.cs
- CodeGeneratorOptions.cs
- ObjectTag.cs
- HttpCookieCollection.cs
- Canvas.cs
- Compiler.cs
- NullReferenceException.cs
- DataGridViewTopLeftHeaderCell.cs
- sqlser.cs
- TabletCollection.cs
- EntityProviderServices.cs
- RootProfilePropertySettingsCollection.cs
- XslException.cs
- XmlSchemaParticle.cs
- DataTablePropertyDescriptor.cs
- TextViewSelectionProcessor.cs
- ObjectQueryProvider.cs
- EventProvider.cs
- TypeConstant.cs
- CompilerGlobalScopeAttribute.cs
- ValidatingReaderNodeData.cs
- XmlElementCollection.cs
- WebPartCloseVerb.cs
- RelationshipType.cs
- TextParentUndoUnit.cs
- SpecialTypeDataContract.cs
- RichTextBoxAutomationPeer.cs
- MonthCalendar.cs
- CodeParameterDeclarationExpressionCollection.cs
- DefaultTextStore.cs
- UriSectionData.cs
- FixUp.cs
- LayoutEvent.cs
- FileLogRecord.cs
- Pair.cs
- FormsAuthentication.cs
- SqlTransaction.cs
- StreamInfo.cs
- StateWorkerRequest.cs
- XmlDocumentType.cs
- XmlMtomReader.cs
- FormatException.cs
- GridViewDeleteEventArgs.cs
- CngKey.cs
- MembershipAdapter.cs
- ResourceExpressionEditorSheet.cs
- FontStyle.cs
- WindowClosedEventArgs.cs
- PageContentCollection.cs
- HttpInputStream.cs
- Expression.cs
- CornerRadius.cs
- DataGridItemEventArgs.cs
- COM2ExtendedUITypeEditor.cs
- PrintDocument.cs
- DoubleLinkListEnumerator.cs
- RightsDocument.cs
- PlatformNotSupportedException.cs
- PatternMatcher.cs
- RenderCapability.cs
- BinHexDecoder.cs
- TypeDescriptorContext.cs
- CultureInfoConverter.cs
- MemberCollection.cs
- ChannelSinkStacks.cs
- OpenTypeLayoutCache.cs
- ButtonFlatAdapter.cs
- ToolStripLabel.cs
- ObjectContextServiceProvider.cs
- RowType.cs
- InitializationEventAttribute.cs
- SplineKeyFrames.cs
- DataGridCommandEventArgs.cs
- PackageStore.cs
- RelatedCurrencyManager.cs
- CustomAttributeBuilder.cs
- WorkflowOperationFault.cs
- CheckBox.cs
- PermissionSetTriple.cs
- DateTimeEditor.cs
- EmptyEnumerable.cs