Castle.DynamicProxy.Builder.CodeGenerators.InterfaceProxyGenerator.CreateProperty C# (CSharp) Метод

CreateProperty() защищенный Метод

protected CreateProperty ( PropertyInfo property ) : EasyProperty
property System.Reflection.PropertyInfo
Результат Castle.DynamicProxy.Builder.CodeBuilder.EasyProperty
		protected override EasyProperty CreateProperty(PropertyInfo property)
		{
			//The Interceptor Property form the IProxy Interface -> Access the __interceptor Attribute
			if ("Interceptor".Equals(property.Name) && typeof(IInterceptor).Equals(property.PropertyType))
			{
				return CreateInterceptorProperty(property);
			}
			return base.CreateProperty(property);
		}