Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets /// the field name. /// ///// 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; } } } } // 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
- Application.cs
- UTF8Encoding.cs
- XslVisitor.cs
- ShapingEngine.cs
- StaticFileHandler.cs
- RawMouseInputReport.cs
- EntityCodeGenerator.cs
- IndexedString.cs
- SoapHeader.cs
- MetaData.cs
- WindowsSecurityToken.cs
- VisualStyleInformation.cs
- DesignerCalendarAdapter.cs
- ModuleBuilderData.cs
- HtmlButton.cs
- UnmanagedMemoryStream.cs
- ServiceControllerDesigner.cs
- PtsCache.cs
- DiscardableAttribute.cs
- GlyphsSerializer.cs
- MenuItemBinding.cs
- NavigatingCancelEventArgs.cs
- MessageSmuggler.cs
- TextCompositionEventArgs.cs
- WorkflowViewElement.cs
- PropertyCondition.cs
- CssTextWriter.cs
- ComplexPropertyEntry.cs
- NavigatorInput.cs
- BounceEase.cs
- EdgeProfileValidation.cs
- FaultPropagationRecord.cs
- GuidelineSet.cs
- HtmlImage.cs
- DesignerCategoryAttribute.cs
- ChannelServices.cs
- RepeatBehavior.cs
- MemberHolder.cs
- ServiceRouteHandler.cs
- ExpressionEditor.cs
- Int64Storage.cs
- XmlDocumentSerializer.cs
- ProjectedWrapper.cs
- SafePointer.cs
- DataBoundControlHelper.cs
- HMACSHA256.cs
- TextTreeDeleteContentUndoUnit.cs
- Metadata.cs
- PieceDirectory.cs
- ControlAdapter.cs
- SoapException.cs
- regiisutil.cs
- GroupDescription.cs
- APCustomTypeDescriptor.cs
- CdpEqualityComparer.cs
- XmlSchemaSimpleTypeRestriction.cs
- EmptyEnumerator.cs
- TypeUtil.cs
- ProfileSettings.cs
- MaterialCollection.cs
- login.cs
- AccessorTable.cs
- ClipboardData.cs
- CustomLineCap.cs
- OutputScope.cs
- HttpTransportBindingElement.cs
- BaseCollection.cs
- UInt64Storage.cs
- TdsParserStaticMethods.cs
- CommandValueSerializer.cs
- DataListComponentEditor.cs
- WindowsToolbar.cs
- TreeView.cs
- ItemCheckEvent.cs
- SqlXml.cs
- TableItemStyle.cs
- NavigationProperty.cs
- TextBreakpoint.cs
- RecognizedWordUnit.cs
- _IPv6Address.cs
- DispatcherOperation.cs
- Char.cs
- DataGridViewSelectedRowCollection.cs
- PageThemeParser.cs
- TrackingExtract.cs
- CompModSwitches.cs
- ExpressionBindingCollection.cs
- DispatcherTimer.cs
- IISMapPath.cs
- CodeMethodReturnStatement.cs
- HealthMonitoringSection.cs
- TypeDescriptor.cs
- ProfileSettingsCollection.cs
- ProgressBarHighlightConverter.cs
- InvalidEnumArgumentException.cs
- GroupLabel.cs
- DockAndAnchorLayout.cs
- DetailsViewDeleteEventArgs.cs
- RepeaterItemCollection.cs
- WebServiceParameterData.cs