Exemplo n.º 1
0
 public void Process(PropertyDefinition property)
 {
     try
     {
         if (property.IsGeneratedCode())
         {
             return;
         }
         InnerProcess(property);
     }
     catch (Exception exception)
     {
         throw new WeavingException(string.Format("An error occurred processing property '{0}'", property.FullName), exception);
     }
 }
Exemplo n.º 2
0
 public void Process(PropertyDefinition property)
 {
     try
     {
         if (property.IsGeneratedCode())
         {
             return;
         }
         InnerProcess(property);
     }
     catch (Exception exception)
     {
         LogTo.Error(exception, "An error occurred processing property '{0}'.", property.FullName);
     }
 }