本文整理匯總了C#中Mono.Cecil.PropertyDefinition.MarkAsCompilerGenerated方法的典型用法代碼示例。如果您正苦於以下問題:C# PropertyDefinition.MarkAsCompilerGenerated方法的具體用法?C# PropertyDefinition.MarkAsCompilerGenerated怎麽用?C# PropertyDefinition.MarkAsCompilerGenerated使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Mono.Cecil.PropertyDefinition
的用法示例。
在下文中一共展示了PropertyDefinition.MarkAsCompilerGenerated方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: ProcessProperty
private void ProcessProperty(CatelType catelType, CatelTypeProperty modelProperty, CustomAttribute exposeAttribute)
{
var modelName = modelProperty.Name;
var viewModelPropertyName = (string)exposeAttribute.ConstructorArguments[0].Value;
var modelPropertyName = viewModelPropertyName;
if (exposeAttribute.ConstructorArguments.Count > 1)
{
modelPropertyName = (string)(exposeAttribute.ConstructorArguments[1].Value ?? viewModelPropertyName);
}
bool isReadOnly = false;
var isReadOnlyProperty = (from property in exposeAttribute.Properties
where string.Equals(property.Name, "IsReadOnly")
select property).FirstOrDefault();
if (isReadOnlyProperty.Argument.Value != null)
{
isReadOnly = (bool) isReadOnlyProperty.Argument.Value;
}
// Check property definition on model
var modelType = modelProperty.PropertyDefinition.PropertyType;
var modelPropertyToMap = modelType.GetProperty(modelPropertyName);
if (modelPropertyToMap == null)
{
FodyEnvironment.LogError($"Exposed property '{modelPropertyName}' does not exist on model '{modelType.FullName}', make sure to set the right mapping");
return;
}
var modelPropertyType = modelPropertyToMap.PropertyType;
var viewModelPropertyDefinition = new PropertyDefinition(viewModelPropertyName, PropertyAttributes.None, FodyEnvironment.ModuleDefinition.Import(modelPropertyType));
viewModelPropertyDefinition.DeclaringType = catelType.TypeDefinition;
catelType.TypeDefinition.Properties.Add(viewModelPropertyDefinition);
viewModelPropertyDefinition.MarkAsCompilerGenerated(_msCoreReferenceFinder);
var catelTypeProperty = new CatelTypeProperty(catelType.TypeDefinition, viewModelPropertyDefinition);
catelTypeProperty.IsReadOnly = isReadOnly;
var catelPropertyWeaver = new CatelPropertyWeaver(catelType, catelTypeProperty, _msCoreReferenceFinder);
catelPropertyWeaver.Execute(true);
var stringType = _msCoreReferenceFinder.GetCoreTypeReference("String");
var stringTypeDefinition = catelType.TypeDefinition.Module.Import(stringType);
var attributeConstructor = catelType.TypeDefinition.Module.Import(ViewModelToModelAttributeTypeDefinition.Constructor(false));
var viewModelToModelAttribute = new CustomAttribute(attributeConstructor);
viewModelToModelAttribute.ConstructorArguments.Add(new CustomAttributeArgument(stringTypeDefinition, modelName));
viewModelToModelAttribute.ConstructorArguments.Add(new CustomAttributeArgument(stringTypeDefinition, modelPropertyName));
viewModelPropertyDefinition.CustomAttributes.Add(viewModelToModelAttribute);
}