Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeFieldReferenceExpression.cs / 1305376 / CodeFieldReferenceExpression.cs
//------------------------------------------------------------------------------ //// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeFieldReferenceExpression : CodeExpression { private CodeExpression targetObject; private string fieldName; ////// Represents a reference to a field. /// ////// public CodeFieldReferenceExpression() { } ////// Initializes a new instance of ///. /// /// public CodeFieldReferenceExpression(CodeExpression targetObject, string fieldName) { TargetObject = targetObject; FieldName = fieldName; } ////// Initializes a new instance of ///. /// /// public CodeExpression TargetObject { get { return targetObject; } set { targetObject = value; } } ////// Gets or sets /// the target object. /// ////// public string FieldName { get { return (fieldName == null) ? string.Empty : fieldName; } set { fieldName = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets /// the field name. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- QuaternionIndependentAnimationStorage.cs
- Transactions.cs
- DescendentsWalker.cs
- MethodBody.cs
- DataServiceStreamProviderWrapper.cs
- AsymmetricAlgorithm.cs
- XhtmlBasicCalendarAdapter.cs
- DataControlCommands.cs
- HwndKeyboardInputProvider.cs
- ReadOnlyNameValueCollection.cs
- ControlSerializer.cs
- StatusBar.cs
- MessageSmuggler.cs
- PolyLineSegmentFigureLogic.cs
- ForceCopyBuildProvider.cs
- SecurityHelper.cs
- OutputCacheSection.cs
- DesignerDataStoredProcedure.cs
- EncryptedType.cs
- ProviderCommandInfoUtils.cs
- TextSelectionProcessor.cs
- ToolBarButton.cs
- ConsumerConnectionPointCollection.cs
- DurableDispatcherAddressingFault.cs
- ReflectPropertyDescriptor.cs
- ProvidePropertyAttribute.cs
- StoreAnnotationsMap.cs
- ResXResourceSet.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- SQLGuid.cs
- TrustManagerPromptUI.cs
- NameValueFileSectionHandler.cs
- ForEachAction.cs
- WrapperSecurityCommunicationObject.cs
- MarkerProperties.cs
- XmlDocumentViewSchema.cs
- ItemList.cs
- SQLInt16.cs
- AddInAdapter.cs
- XslCompiledTransform.cs
- MdImport.cs
- ImportContext.cs
- Executor.cs
- CalendarData.cs
- SqlClientWrapperSmiStream.cs
- NullRuntimeConfig.cs
- XmlRawWriterWrapper.cs
- CodeCatchClause.cs
- DoubleAnimation.cs
- nulltextcontainer.cs
- XmlSerializationWriter.cs
- WindowsContainer.cs
- EmptyEnumerator.cs
- PerformanceCounterPermission.cs
- CalendarTable.cs
- TemplateBindingExtensionConverter.cs
- AutoSizeToolBoxItem.cs
- ComponentDispatcherThread.cs
- CharacterString.cs
- HtmlImage.cs
- AppPool.cs
- TripleDES.cs
- AncestorChangedEventArgs.cs
- PowerModeChangedEventArgs.cs
- IndexedString.cs
- PermissionListSet.cs
- TypeForwardedToAttribute.cs
- DuplicateMessageDetector.cs
- HttpCapabilitiesSectionHandler.cs
- ImageSourceValueSerializer.cs
- ObjectRef.cs
- PropertyEntry.cs
- RightNameExpirationInfoPair.cs
- SystemTcpStatistics.cs
- coordinatorscratchpad.cs
- Double.cs
- CompositeKey.cs
- DataProviderNameConverter.cs
- RegexGroup.cs
- SiteMapPath.cs
- RuleInfoComparer.cs
- SmtpClient.cs
- CursorConverter.cs
- EmbeddedMailObjectsCollection.cs
- ValueConversionAttribute.cs
- DbException.cs
- TextTrailingWordEllipsis.cs
- DataBoundControlHelper.cs
- EntityException.cs
- TableItemProviderWrapper.cs
- AliasedSlot.cs
- DataControlCommands.cs
- DataGridViewColumnCollectionDialog.cs
- BaseParaClient.cs
- SqlMethodTransformer.cs
- TextBlockAutomationPeer.cs
- InternalConfigSettingsFactory.cs
- ScrollEvent.cs
- ManagementInstaller.cs
- Bezier.cs