Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeFieldReferenceExpression.cs / 1 / CodeFieldReferenceExpression.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ////// [ 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; } } } }/// Gets or sets /// the field name. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- GeometryDrawing.cs
- UnionCodeGroup.cs
- WindowsEditBox.cs
- ResourceReferenceKeyNotFoundException.cs
- SlipBehavior.cs
- CompressedStack.cs
- ScriptRegistrationManager.cs
- TdsParserStaticMethods.cs
- EdmEntityTypeAttribute.cs
- ISAPIRuntime.cs
- CaseStatement.cs
- WebPartTracker.cs
- Helpers.cs
- DiscoveryOperationContext.cs
- XmlHelper.cs
- ShapingEngine.cs
- DrawingContextDrawingContextWalker.cs
- FocusWithinProperty.cs
- DocumentApplicationJournalEntry.cs
- EmptyEnumerator.cs
- Binding.cs
- SafeLocalMemHandle.cs
- BaseAddressElementCollection.cs
- SrgsRuleRef.cs
- SoapInteropTypes.cs
- CompareValidator.cs
- Registration.cs
- WebPartConnectionsCancelVerb.cs
- StringAttributeCollection.cs
- BitmapImage.cs
- UserValidatedEventArgs.cs
- OleDbWrapper.cs
- InputBindingCollection.cs
- RemotingSurrogateSelector.cs
- SoapSchemaExporter.cs
- FontUnitConverter.cs
- SecurityIdentifierConverter.cs
- MarkupProperty.cs
- RenderingEventArgs.cs
- MediaElement.cs
- DesignTimeTemplateParser.cs
- StringUtil.cs
- PrimitiveXmlSerializers.cs
- ScriptIgnoreAttribute.cs
- SiteMapSection.cs
- FrameDimension.cs
- CompositeControl.cs
- CheckedListBox.cs
- TripleDESCryptoServiceProvider.cs
- FlowLayoutSettings.cs
- QueryCacheEntry.cs
- TemplateNameScope.cs
- DataGridViewComboBoxColumn.cs
- InfoCardTrace.cs
- WebZone.cs
- TextAction.cs
- WinEventHandler.cs
- RankException.cs
- DataControlLinkButton.cs
- EDesignUtil.cs
- TextEffect.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- GetImportFileNameRequest.cs
- EntityContainerEmitter.cs
- SetIndexBinder.cs
- FixedSOMContainer.cs
- DescendantOverDescendantQuery.cs
- CodeIdentifier.cs
- EventLogConfiguration.cs
- LinqDataSourceContextEventArgs.cs
- SubqueryRules.cs
- ServiceHttpHandlerFactory.cs
- WindowsFormsLinkLabel.cs
- Lease.cs
- ColumnResult.cs
- DefinitionBase.cs
- ObjectItemCollection.cs
- FrameworkTextComposition.cs
- BasicExpandProvider.cs
- Message.cs
- _ConnectStream.cs
- Transform3DCollection.cs
- BlockUIContainer.cs
- DbDataAdapter.cs
- SqlCacheDependencyDatabase.cs
- ACL.cs
- UnsafeNativeMethods.cs
- PrintPreviewControl.cs
- BitConverter.cs
- HyperLink.cs
- WebPartEditorApplyVerb.cs
- PropertyInformation.cs
- IdnMapping.cs
- PlacementWorkspace.cs
- SHA256Managed.cs
- MasterPageBuildProvider.cs
- RequiredFieldValidator.cs
- AttributeTable.cs
- JavaScriptString.cs
- CryptoKeySecurity.cs