Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Core / Microsoft / Scripting / Ast / MemberAssignment.cs / 1305376 / MemberAssignment.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.Dynamic.Utils; using System.Reflection; #if SILVERLIGHT using System.Core; #endif namespace System.Linq.Expressions { ////// Represents assignment to a member of an object. /// public sealed class MemberAssignment : MemberBinding { Expression _expression; internal MemberAssignment(MemberInfo member, Expression expression) #pragma warning disable 618 : base(MemberBindingType.Assignment, member) { #pragma warning restore 618 _expression = expression; } ////// Gets the public Expression Expression { get { return _expression; } } ///which represents the object whose member is being assigned to. /// /// 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 MemberAssignment Update(Expression expression) { if (expression == Expression) { return this; } return Expression.Bind(Member, expression); } } public partial class Expression { ////// Creates a /// Thebinding the specified value to the given member. /// for the member which is being assigned to. /// The value to be assigned to . /// The created public static MemberAssignment Bind(MemberInfo member, Expression expression) { ContractUtils.RequiresNotNull(member, "member"); RequiresCanRead(expression, "expression"); Type memberType; ValidateSettableFieldOrPropertyMember(member, out memberType); if (!memberType.IsAssignableFrom(expression.Type)) { throw Error.ArgumentTypesMustMatch(); } return new MemberAssignment(member, expression); } ///. /// Creates a /// Thebinding the specified value to the given property. /// for the property which is being assigned to. /// The value to be assigned to . /// The created public static MemberAssignment Bind(MethodInfo propertyAccessor, Expression expression) { ContractUtils.RequiresNotNull(propertyAccessor, "propertyAccessor"); ContractUtils.RequiresNotNull(expression, "expression"); ValidateMethodInfo(propertyAccessor); return Bind(GetProperty(propertyAccessor), expression); } private static void ValidateSettableFieldOrPropertyMember(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.CanWrite) { throw Error.PropertyDoesNotHaveSetter(pi); } memberType = pi.PropertyType; } else { memberType = fi.FieldType; } } } } // 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.Dynamic.Utils; using System.Reflection; #if SILVERLIGHT using System.Core; #endif namespace System.Linq.Expressions { ///. /// Represents assignment to a member of an object. /// public sealed class MemberAssignment : MemberBinding { Expression _expression; internal MemberAssignment(MemberInfo member, Expression expression) #pragma warning disable 618 : base(MemberBindingType.Assignment, member) { #pragma warning restore 618 _expression = expression; } ////// Gets the public Expression Expression { get { return _expression; } } ///which represents the object whose member is being assigned to. /// /// 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 MemberAssignment Update(Expression expression) { if (expression == Expression) { return this; } return Expression.Bind(Member, expression); } } public partial class Expression { ////// Creates a /// Thebinding the specified value to the given member. /// for the member which is being assigned to. /// The value to be assigned to . /// The created public static MemberAssignment Bind(MemberInfo member, Expression expression) { ContractUtils.RequiresNotNull(member, "member"); RequiresCanRead(expression, "expression"); Type memberType; ValidateSettableFieldOrPropertyMember(member, out memberType); if (!memberType.IsAssignableFrom(expression.Type)) { throw Error.ArgumentTypesMustMatch(); } return new MemberAssignment(member, expression); } ///. /// Creates a /// Thebinding the specified value to the given property. /// for the property which is being assigned to. /// The value to be assigned to . /// The created public static MemberAssignment Bind(MethodInfo propertyAccessor, Expression expression) { ContractUtils.RequiresNotNull(propertyAccessor, "propertyAccessor"); ContractUtils.RequiresNotNull(expression, "expression"); ValidateMethodInfo(propertyAccessor); return Bind(GetProperty(propertyAccessor), expression); } private static void ValidateSettableFieldOrPropertyMember(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.CanWrite) { throw Error.PropertyDoesNotHaveSetter(pi); } memberType = pi.PropertyType; } else { memberType = fi.FieldType; } } } } // 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
- XmlNamespaceMappingCollection.cs
- MachineSettingsSection.cs
- GetLastErrorDetailsRequest.cs
- RegexWriter.cs
- ListSourceHelper.cs
- WsdlBuildProvider.cs
- ArrayElementGridEntry.cs
- WFItemsToSpacerVisibility.cs
- TypefaceMap.cs
- prompt.cs
- ComplexBindingPropertiesAttribute.cs
- TypefaceMap.cs
- TargetInvocationException.cs
- hresults.cs
- SplitterCancelEvent.cs
- QueryPageSettingsEventArgs.cs
- LookupBindingPropertiesAttribute.cs
- StrongNameIdentityPermission.cs
- WebControlAdapter.cs
- RunInstallerAttribute.cs
- TemplatedMailWebEventProvider.cs
- ComponentDesigner.cs
- KeysConverter.cs
- UInt64Converter.cs
- Vector3DCollectionConverter.cs
- IndicCharClassifier.cs
- Selection.cs
- ListItemConverter.cs
- DockAndAnchorLayout.cs
- Int64KeyFrameCollection.cs
- SystemDiagnosticsSection.cs
- ChannelBuilder.cs
- TextElementCollection.cs
- NullableFloatAverageAggregationOperator.cs
- BrowserCapabilitiesFactory.cs
- SRGSCompiler.cs
- TreeViewEvent.cs
- Win32PrintDialog.cs
- BitmapMetadata.cs
- DataGridCommandEventArgs.cs
- TypePropertyEditor.cs
- HttpResponseHeader.cs
- ModelVisual3D.cs
- CompoundFileIOPermission.cs
- ArcSegment.cs
- AttachmentService.cs
- DataGridRowHeaderAutomationPeer.cs
- SymLanguageType.cs
- DirectoryNotFoundException.cs
- EntityTypeEmitter.cs
- PrivilegeNotHeldException.cs
- Color.cs
- AsymmetricKeyExchangeDeformatter.cs
- TypeConverterHelper.cs
- RegexFCD.cs
- CngProvider.cs
- SrgsSubset.cs
- TreeViewImageKeyConverter.cs
- WebScriptMetadataFormatter.cs
- PhysicalFontFamily.cs
- Missing.cs
- ContentTypeSettingClientMessageFormatter.cs
- TemplateEditingVerb.cs
- CacheDependency.cs
- objectresult_tresulttype.cs
- Missing.cs
- BindingManagerDataErrorEventArgs.cs
- WebDisplayNameAttribute.cs
- OptimizerPatterns.cs
- AgileSafeNativeMemoryHandle.cs
- DateTimeParse.cs
- XmlDataLoader.cs
- XsdBuildProvider.cs
- NativeMethods.cs
- Annotation.cs
- Compensation.cs
- ValidationVisibilityAttribute.cs
- ClientConfigPaths.cs
- PostBackOptions.cs
- FederatedMessageSecurityOverHttpElement.cs
- EnumerableRowCollection.cs
- NativeMethods.cs
- OpCodes.cs
- SQLRoleProvider.cs
- XmlSchemaObjectTable.cs
- SessionState.cs
- GraphicsPath.cs
- FontNamesConverter.cs
- NativeMethods.cs
- BlurBitmapEffect.cs
- WebBrowsableAttribute.cs
- LookupNode.cs
- TypefaceCollection.cs
- HostedHttpContext.cs
- EdmTypeAttribute.cs
- MorphHelper.cs
- HttpHandlersInstallComponent.cs
- DataGridTemplateColumn.cs
- FastEncoderWindow.cs
- DataGridViewCellStyleConverter.cs