Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Core / Microsoft / Scripting / Ast / MemberMemberBinding.cs / 1305376 / MemberMemberBinding.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.Collections.Generic; using System.Collections.ObjectModel; using System.Dynamic.Utils; using System.Reflection; #if SILVERLIGHT using System.Core; #endif namespace System.Linq.Expressions { ////// Represents initializing members of a member of a newly created object. /// ////// Use the public sealed class MemberMemberBinding : MemberBinding { ReadOnlyCollectionfactory methods to create a . /// The value of the property of a object is . /// _bindings; internal MemberMemberBinding(MemberInfo member, ReadOnlyCollection bindings) #pragma warning disable 618 : base(MemberBindingType.MemberBinding, member) { #pragma warning restore 618 _bindings = bindings; } /// /// Gets the bindings that describe how to initialize the members of a member. /// public ReadOnlyCollectionBindings { get { return _bindings; } } /// /// Creates a new expression that is like this one, but using the /// supplied children. If all of the children are the same, it will /// return this expression. /// /// Theproperty of the result. /// This expression if no children changed, or an expression with the updated children. public MemberMemberBinding Update(IEnumerablebindings) { if (bindings == Bindings) { return this; } return Expression.MemberBind(Member, bindings); } } public partial class Expression { /// /// Creates a /// Thethat represents the recursive initialization of members of a field or property. /// to set the property equal to. /// An array of objects to use to populate the collection. /// A public static MemberMemberBinding MemberBind(MemberInfo member, params MemberBinding[] bindings) { ContractUtils.RequiresNotNull(member, "member"); ContractUtils.RequiresNotNull(bindings, "bindings"); return MemberBind(member, (IEnumerablethat has the property equal to and the and properties set to the specified values. )bindings); } /// /// Creates a /// Thethat represents the recursive initialization of members of a field or property. /// to set the property equal to. /// An that contains objects to use to populate the collection. /// A public static MemberMemberBinding MemberBind(MemberInfo member, IEnumerablethat has the property equal to and the and properties set to the specified values. bindings) { ContractUtils.RequiresNotNull(member, "member"); ContractUtils.RequiresNotNull(bindings, "bindings"); ReadOnlyCollection roBindings = bindings.ToReadOnly(); Type memberType; ValidateGettableFieldOrPropertyMember(member, out memberType); ValidateMemberInitArgs(memberType, roBindings); return new MemberMemberBinding(member, roBindings); } /// /// Creates a /// Thethat represents the recursive initialization of members of a member that is accessed by using a property accessor method. /// that represents a property accessor method. /// An that contains objects to use to populate the collection. /// /// A public static MemberMemberBinding MemberBind(MethodInfo propertyAccessor, params MemberBinding[] bindings) { ContractUtils.RequiresNotNull(propertyAccessor, "propertyAccessor"); return MemberBind(GetProperty(propertyAccessor), bindings); } ///that has the property equal to , /// the Member property set to the that represents the property accessed in , /// and properties set to the specified values. /// /// Creates a /// Thethat represents the recursive initialization of members of a member that is accessed by using a property accessor method. /// that represents a property accessor method. /// An that contains objects to use to populate the collection. /// /// A public static MemberMemberBinding MemberBind(MethodInfo propertyAccessor, IEnumerablethat has the property equal to , /// the Member property set to the that represents the property accessed in , /// and properties set to the specified values. /// bindings) { ContractUtils.RequiresNotNull(propertyAccessor, "propertyAccessor"); return MemberBind(GetProperty(propertyAccessor), bindings); } private static void ValidateGettableFieldOrPropertyMember(MemberInfo member, out Type memberType) { FieldInfo fi = member as FieldInfo; if (fi == null) { PropertyInfo pi = member as PropertyInfo; if (pi == null) { throw Error.ArgumentMustBeFieldInfoOrPropertInfo(); } if (!pi.CanRead) { throw Error.PropertyDoesNotHaveGetter(pi); } memberType = pi.PropertyType; } else { memberType = fi.FieldType; } } private static void ValidateMemberInitArgs(Type type, ReadOnlyCollection bindings) { for (int i = 0, n = bindings.Count; i < n; i++) { MemberBinding b = bindings[i]; ContractUtils.RequiresNotNull(b, "bindings"); if (!b.Member.DeclaringType.IsAssignableFrom(type)) { throw Error.NotAMemberOfType(b.Member.Name, type); } } } } } // 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.Collections.Generic; using System.Collections.ObjectModel; using System.Dynamic.Utils; using System.Reflection; #if SILVERLIGHT using System.Core; #endif namespace System.Linq.Expressions { /// /// Represents initializing members of a member of a newly created object. /// ////// Use the public sealed class MemberMemberBinding : MemberBinding { ReadOnlyCollectionfactory methods to create a . /// The value of the property of a object is . /// _bindings; internal MemberMemberBinding(MemberInfo member, ReadOnlyCollection bindings) #pragma warning disable 618 : base(MemberBindingType.MemberBinding, member) { #pragma warning restore 618 _bindings = bindings; } /// /// Gets the bindings that describe how to initialize the members of a member. /// public ReadOnlyCollectionBindings { get { return _bindings; } } /// /// Creates a new expression that is like this one, but using the /// supplied children. If all of the children are the same, it will /// return this expression. /// /// Theproperty of the result. /// This expression if no children changed, or an expression with the updated children. public MemberMemberBinding Update(IEnumerablebindings) { if (bindings == Bindings) { return this; } return Expression.MemberBind(Member, bindings); } } public partial class Expression { /// /// Creates a /// Thethat represents the recursive initialization of members of a field or property. /// to set the property equal to. /// An array of objects to use to populate the collection. /// A public static MemberMemberBinding MemberBind(MemberInfo member, params MemberBinding[] bindings) { ContractUtils.RequiresNotNull(member, "member"); ContractUtils.RequiresNotNull(bindings, "bindings"); return MemberBind(member, (IEnumerablethat has the property equal to and the and properties set to the specified values. )bindings); } /// /// Creates a /// Thethat represents the recursive initialization of members of a field or property. /// to set the property equal to. /// An that contains objects to use to populate the collection. /// A public static MemberMemberBinding MemberBind(MemberInfo member, IEnumerablethat has the property equal to and the and properties set to the specified values. bindings) { ContractUtils.RequiresNotNull(member, "member"); ContractUtils.RequiresNotNull(bindings, "bindings"); ReadOnlyCollection roBindings = bindings.ToReadOnly(); Type memberType; ValidateGettableFieldOrPropertyMember(member, out memberType); ValidateMemberInitArgs(memberType, roBindings); return new MemberMemberBinding(member, roBindings); } /// /// Creates a /// Thethat represents the recursive initialization of members of a member that is accessed by using a property accessor method. /// that represents a property accessor method. /// An that contains objects to use to populate the collection. /// /// A public static MemberMemberBinding MemberBind(MethodInfo propertyAccessor, params MemberBinding[] bindings) { ContractUtils.RequiresNotNull(propertyAccessor, "propertyAccessor"); return MemberBind(GetProperty(propertyAccessor), bindings); } ///that has the property equal to , /// the Member property set to the that represents the property accessed in , /// and properties set to the specified values. /// /// Creates a /// Thethat represents the recursive initialization of members of a member that is accessed by using a property accessor method. /// that represents a property accessor method. /// An that contains objects to use to populate the collection. /// /// A public static MemberMemberBinding MemberBind(MethodInfo propertyAccessor, IEnumerablethat has the property equal to , /// the Member property set to the that represents the property accessed in , /// and properties set to the specified values. /// bindings) { ContractUtils.RequiresNotNull(propertyAccessor, "propertyAccessor"); return MemberBind(GetProperty(propertyAccessor), bindings); } private static void ValidateGettableFieldOrPropertyMember(MemberInfo member, out Type memberType) { FieldInfo fi = member as FieldInfo; if (fi == null) { PropertyInfo pi = member as PropertyInfo; if (pi == null) { throw Error.ArgumentMustBeFieldInfoOrPropertInfo(); } if (!pi.CanRead) { throw Error.PropertyDoesNotHaveGetter(pi); } memberType = pi.PropertyType; } else { memberType = fi.FieldType; } } private static void ValidateMemberInitArgs(Type type, ReadOnlyCollection bindings) { for (int i = 0, n = bindings.Count; i < n; i++) { MemberBinding b = bindings[i]; ContractUtils.RequiresNotNull(b, "bindings"); if (!b.Member.DeclaringType.IsAssignableFrom(type)) { throw Error.NotAMemberOfType(b.Member.Name, type); } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BinaryUtilClasses.cs
- DataGridState.cs
- XmlTextEncoder.cs
- DisableDpiAwarenessAttribute.cs
- MasterPageBuildProvider.cs
- PermissionListSet.cs
- ProcessModelInfo.cs
- SyndicationDeserializer.cs
- DbConnectionPoolGroup.cs
- Assert.cs
- ResumeStoryboard.cs
- ErrorTableItemStyle.cs
- SecurityManager.cs
- FontStyles.cs
- ListBindingConverter.cs
- VersionedStream.cs
- EventItfInfo.cs
- ControlBuilderAttribute.cs
- EventDescriptorCollection.cs
- CoTaskMemUnicodeSafeHandle.cs
- IntSecurity.cs
- SqlAliasesReferenced.cs
- CapabilitiesState.cs
- DataException.cs
- MailSettingsSection.cs
- RecordManager.cs
- M3DUtil.cs
- HijriCalendar.cs
- SiblingIterators.cs
- TemplatePropertyEntry.cs
- HybridObjectCache.cs
- ParamArrayAttribute.cs
- TableRowGroup.cs
- RedirectionProxy.cs
- ForeignConstraint.cs
- NativeMethods.cs
- DataSourceGeneratorException.cs
- TextPointer.cs
- FacetChecker.cs
- HtmlWindow.cs
- AspCompat.cs
- SubMenuStyle.cs
- GregorianCalendar.cs
- DispatchChannelSink.cs
- ComponentDispatcherThread.cs
- ItemCollection.cs
- MediaTimeline.cs
- SoapSchemaImporter.cs
- BindingExpressionUncommonField.cs
- LeftCellWrapper.cs
- PanelContainerDesigner.cs
- XmlAutoDetectWriter.cs
- ServiceContractListItemList.cs
- CalendarTable.cs
- FocusChangedEventArgs.cs
- WsdlHelpGeneratorElement.cs
- NotifyParentPropertyAttribute.cs
- XmlParserContext.cs
- UserValidatedEventArgs.cs
- CodeConstructor.cs
- SettingsSavedEventArgs.cs
- MappingItemCollection.cs
- HierarchicalDataSourceControl.cs
- NetworkAddressChange.cs
- ChannelFactoryBase.cs
- CompositeCollection.cs
- RawStylusInputCustomDataList.cs
- MLangCodePageEncoding.cs
- HttpConfigurationContext.cs
- securitycriticaldata.cs
- DateTimeFormatInfoScanner.cs
- PeerDuplexChannelListener.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- CommandEventArgs.cs
- ExpressionBuilder.cs
- ScrollProviderWrapper.cs
- EventLogPropertySelector.cs
- Repeater.cs
- ContentTextAutomationPeer.cs
- BitmapEffectDrawingContextState.cs
- HostedBindingBehavior.cs
- TemplateLookupAction.cs
- SafeFindHandle.cs
- ReflectionServiceProvider.cs
- LogEntryUtils.cs
- SystemFonts.cs
- SkipStoryboardToFill.cs
- SessionStateUtil.cs
- TextRangeSerialization.cs
- TransactionScope.cs
- Vector3DKeyFrameCollection.cs
- SqlWorkflowPersistenceService.cs
- PackWebResponse.cs
- StringTraceRecord.cs
- wmiprovider.cs
- UnauthorizedAccessException.cs
- GridItem.cs
- Label.cs
- ResumeStoryboard.cs
- ObjectSecurity.cs