Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Core / Microsoft / Scripting / Ast / MemberBinding.cs / 1305376 / MemberBinding.cs
/* **************************************************************************** * * Copyright (c) Microsoft Corporation. * * This source code is subject to terms and conditions of the Microsoft Public License. A * copy of the license can be found in the License.html file at the root of this distribution. If * you cannot locate the Microsoft Public License, please send an email to * dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound * by the terms of the Microsoft Public License. * * You must not remove this notice, or any other, from this software. * * * ***************************************************************************/ using System.Reflection; namespace System.Linq.Expressions { ////// Describes the binding types that are used in MemberInitExpression objects. /// public enum MemberBindingType { ////// A binding that represents initializing a member with the value of an expression. /// Assignment, ////// A binding that represents recursively initializing members of a member. /// MemberBinding, ////// A binding that represents initializing a member of type ListBinding } ///or from a list of elements. /// /// Provides the base class from which the classes that represent bindings that are used to initialize members of a newly created object derive. /// public abstract class MemberBinding { MemberBindingType _type; MemberInfo _member; ////// Initializes an instance of /// The type of member binding. /// The field or property to be initialized. [Obsolete("Do not use this constructor. It will be removed in future releases.")] protected MemberBinding(MemberBindingType type, MemberInfo member) { _type = type; _member = member; } ///class. /// /// Gets the type of binding that is represented. /// public MemberBindingType BindingType { get { return _type; } } ////// Gets the field or property to be initialized. /// public MemberInfo Member { get { return _member; } } ////// Returns a ///that represents the current . /// A public override string ToString() { return ExpressionStringBuilder.MemberBindingToString(this); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. /* **************************************************************************** * * Copyright (c) Microsoft Corporation. * * This source code is subject to terms and conditions of the Microsoft Public License. A * copy of the license can be found in the License.html file at the root of this distribution. If * you cannot locate the Microsoft Public License, please send an email to * dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound * by the terms of the Microsoft Public License. * * You must not remove this notice, or any other, from this software. * * * ***************************************************************************/ using System.Reflection; namespace System.Linq.Expressions { ///that represents the current . /// Describes the binding types that are used in MemberInitExpression objects. /// public enum MemberBindingType { ////// A binding that represents initializing a member with the value of an expression. /// Assignment, ////// A binding that represents recursively initializing members of a member. /// MemberBinding, ////// A binding that represents initializing a member of type ListBinding } ///or from a list of elements. /// /// Provides the base class from which the classes that represent bindings that are used to initialize members of a newly created object derive. /// public abstract class MemberBinding { MemberBindingType _type; MemberInfo _member; ////// Initializes an instance of /// The type of member binding. /// The field or property to be initialized. [Obsolete("Do not use this constructor. It will be removed in future releases.")] protected MemberBinding(MemberBindingType type, MemberInfo member) { _type = type; _member = member; } ///class. /// /// Gets the type of binding that is represented. /// public MemberBindingType BindingType { get { return _type; } } ////// Gets the field or property to be initialized. /// public MemberInfo Member { get { return _member; } } ////// Returns a ///that represents the current . /// A public override string ToString() { return ExpressionStringBuilder.MemberBindingToString(this); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.that represents the current .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectReaderCompiler.cs
- XmlSchemaObjectCollection.cs
- TCPClient.cs
- SQLBytesStorage.cs
- ChangeConflicts.cs
- BaseInfoTable.cs
- QuotaThrottle.cs
- ScriptReferenceEventArgs.cs
- UnsafeNativeMethods.cs
- Privilege.cs
- InfiniteIntConverter.cs
- OrthographicCamera.cs
- ObjectAssociationEndMapping.cs
- ViewGenResults.cs
- SetUserPreferenceRequest.cs
- ErrorStyle.cs
- ModelItem.cs
- XmlNodeChangedEventArgs.cs
- FormView.cs
- CodeSubDirectoriesCollection.cs
- SettingsAttributes.cs
- UnsafeNativeMethods.cs
- ToolBarButtonClickEvent.cs
- TextEncodedRawTextWriter.cs
- RadialGradientBrush.cs
- XmlSequenceWriter.cs
- ObjectDataSourceDisposingEventArgs.cs
- ListBoxAutomationPeer.cs
- FlowDocumentReader.cs
- SamlAuthenticationClaimResource.cs
- CodeCompileUnit.cs
- ListViewSelectEventArgs.cs
- Byte.cs
- Win32Exception.cs
- TableRowCollection.cs
- AdornedElementPlaceholder.cs
- DateTimeFormatInfo.cs
- Transform3DCollection.cs
- TextRenderingModeValidation.cs
- XmlAttributeCollection.cs
- ToolStripCustomTypeDescriptor.cs
- FixedSchema.cs
- Effect.cs
- templategroup.cs
- LogicalExpressionTypeConverter.cs
- ConfigurationPropertyCollection.cs
- ButtonRenderer.cs
- EventlogProvider.cs
- Label.cs
- ApplicationDirectoryMembershipCondition.cs
- CmsInterop.cs
- PerformanceCounter.cs
- HashAlgorithm.cs
- WebException.cs
- AnnotationMap.cs
- odbcmetadatafactory.cs
- CacheManager.cs
- CheckBox.cs
- Block.cs
- RelationshipWrapper.cs
- DocumentPageViewAutomationPeer.cs
- Vector3DCollectionValueSerializer.cs
- VisualTreeUtils.cs
- ImpersonateTokenRef.cs
- DataGridCell.cs
- RegexGroup.cs
- CodeGroup.cs
- ListViewDeleteEventArgs.cs
- DesignerSerializationOptionsAttribute.cs
- DataControlField.cs
- MessageSecurityVersion.cs
- SchemaSetCompiler.cs
- DoubleAnimation.cs
- AttributeUsageAttribute.cs
- CriticalHandle.cs
- LocalFileSettingsProvider.cs
- Math.cs
- X509ServiceCertificateAuthenticationElement.cs
- PinnedBufferMemoryStream.cs
- UInt16Storage.cs
- DataGridViewRowPostPaintEventArgs.cs
- PageCatalogPartDesigner.cs
- SQLDecimalStorage.cs
- VarRemapper.cs
- HashMembershipCondition.cs
- CompositeDesignerAccessibleObject.cs
- FontWeights.cs
- RoleServiceManager.cs
- EntityDataSourceWizardForm.cs
- RijndaelCryptoServiceProvider.cs
- OperandQuery.cs
- JsonWriterDelegator.cs
- XsdDateTime.cs
- ToggleButton.cs
- MDIWindowDialog.cs
- URLString.cs
- PolyBezierSegmentFigureLogic.cs
- Timer.cs
- ClientBuildManagerCallback.cs
- CfgParser.cs