Пример #1
0
        /// <summary>
        /// Provides the implementation for operations that get member values. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"/> class can override this method to specify dynamic behavior for operations such as getting a value for a property.
        /// </summary>
        /// <param name="binder">Provides information about the object that called the dynamic operation. The binder.Name property provides the name of the member on which the dynamic operation is performed. For example, for the Console.WriteLine(sampleObject.SampleProperty) statement, where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject"/> class, binder.Name returns "SampleProperty". The binder.IgnoreCase property specifies whether the member name is case-sensitive.</param>
        /// <param name="result">The result of the get operation. For example, if the method is called for a property, you can assign the property value to <paramref name="result"/>.</param>
        /// <returns>
        /// true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a run-time exception is thrown.)
        /// </returns>
        public override bool TryGetMember(GetMemberBinder binder, out object result)
        {
            Contract.Requires(binder != null);
            var binderInfo = new DynamicEntity.BinderInfo(binder.IgnoreCase, binder.Name, binder.ReturnType);

            ITypedAttribute attr = TryResolveAttribute(binderInfo);

            if (attr != null)
            {
                result = attr;
                return(true);
            }

            //TODO: Support all the different things that the member may try to represent

            return(base.TryGetMember(binder, out result));
        }
Пример #2
0
 /// <summary>
 /// Serializes the specified value.
 /// </summary>
 /// <remarks>
 /// The reason this has an <code>out</code> parameter rather than a returntype of TAllowedType is that TAllowedType would require a parameterless constructor,
 /// making it impossible to call this method having passed <see cref="System.String"/> and other primitive types as TAllowedType.
 /// </remarks>
 /// <param name="value">The value.</param>
 /// <param name="serializeTo">The object to serialize to.</param>
 public dynamic Serialize(ITypedAttribute value)
 {
     return((dynamic)value.Value);
 }
 /// <summary>
 /// Serializes the specified value.
 /// </summary>
 /// <remarks>
 /// The reason this has an <code>out</code> parameter rather than a returntype of TAllowedType is that TAllowedType would require a parameterless constructor,
 /// making it impossible to call this method having passed <see cref="System.String"/> and other primitive types as TAllowedType.
 /// </remarks>
 /// <param name="value">The value.</param>
 /// <param name="serializeTo">The object to serialize to.</param>
 public dynamic Serialize(ITypedAttribute value)
 {
     return (dynamic)value.Value;
 }