本文整理匯總了C#中MsgPack.Serialization.Reflection.TracingILGenerator.EmitSetProperty方法的典型用法代碼示例。如果您正苦於以下問題:C# TracingILGenerator.EmitSetProperty方法的具體用法?C# TracingILGenerator.EmitSetProperty怎麽用?C# TracingILGenerator.EmitSetProperty使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類MsgPack.Serialization.Reflection.TracingILGenerator
的用法示例。
在下文中一共展示了TracingILGenerator.EmitSetProperty方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: EmitStoreValue
/// <summary>
/// Emits appropriate storing member instructions.
/// </summary>
/// <param name="il">IL generator to be emitted to.</param>
/// <param name="member"><see cref="MemberInfo"/> to be stored.</param>
public static void EmitStoreValue( TracingILGenerator il, MemberInfo member )
{
Contract.Requires( il != null );
Contract.Requires( member != null );
var asProperty = member as PropertyInfo;
if ( asProperty != null )
{
if ( !asProperty.CanWrite )
{
throw new SerializationException( String.Format( CultureInfo.CurrentCulture, "Cannot set value to '{0}.{1}' property.", asProperty.DeclaringType, asProperty.Name ) );
}
il.EmitSetProperty( asProperty );
}
else
{
Contract.Assert( member is FieldInfo, member.ToString() + ":" + member.MemberType );
var asField = member as FieldInfo;
if ( asField.IsInitOnly )
{
throw new SerializationException( String.Format( CultureInfo.CurrentCulture, "Cannot set value to '{0}.{1}' field.", asField.DeclaringType, asField.Name ) );
}
il.EmitStfld( asField );
}
}