Tagged Questions
0
votes
0answers
17 views
Free AOP framework compatible with WinRT?
I'm currently making a Windows Store version of a WPF app that uses dynamic proxies in a few places.
Since there is apparently no way to generate dynamic proxies in WinRT, I thought I'd try to use ...
0
votes
0answers
27 views
Postsharp compile-time validation on interface methods
I have an assembly that contains service contracts(assembly name is Contracts). I want to implement authorization on those methods using attributes and PostSharp.
The authorization attribute looks ...
2
votes
1answer
17 views
Mono.Cecil GetTypeReference to ICommand
The System.Windows.Input.ICommand interface has been Type Forwarded as of .NET 4.5 from being in PresentationCore.dll to System.dll. I have 2 issues:
How can I import this interface so I can use it ...
0
votes
0answers
30 views
Logging method parameters with PostSharp
How could I log all method parameters on exception with PostSharp v2.1 (without smart tags that added in v3).
Thanks in advance.
0
votes
0answers
63 views
Is it possible to change return type when intercepting a method?
I'd like to treat mapping of data access objects to domain objects as a cross cutting concern and solve the problem using AOP (Aspect Oriented Programming). What I like to do is intercept the ...
2
votes
6answers
116 views
Alternative of Aspect Oriented Programming [closed]
Is there any alternative of using Aspect Oriented Programming to inject repetitive code.
Suppose we have a class that contains many properties and if a property get its value changed we would like to ...
1
vote
1answer
48 views
Apply Aspect Oriented Programming to Web Service
I’m looking for a way to apply the AOP concept to a web service. It is pretty easy to do this for creating a plain class.
Example MyClass
Normally you can create a new instance of a class this way
...
0
votes
4answers
104 views
How to know when any method is called in my application code?
Just for fun, I want to write an aspect such as say logging, tracing or instrumentation/profiling. But I don't want to use any of the available AOP frameworks already available.
I've used PostSharp ...
2
votes
4answers
205 views
Basic implementation of AOP like attribute using standard .NET Framework [duplicate]
Possible Duplicate:
C# wrap method via attributes
I'd like to achieve such functionality:
[Atomic]
public void Foo()
{
/* foo logic */
}
Where [Atomic] attribute is an ...
2
votes
1answer
195 views
C# How do I use AOP for static methods?
I have built a c# .net 4.0 library.
all of the methods are public and static.
i want to add an aspect using an aspect programming library that does something like this:
try block
1. call method (if ...
1
vote
0answers
85 views
Running code before a BCL call with AOP in .NET
I'm trying to call a function after/before every function call to BCL in an ASP.NET application.
For example when Server.MapPath is called I want to call my own function right after and before that ...
2
votes
0answers
272 views
Intercepting method calls in C# using Proxies
What I'm trying to do is to be able to intercept calls to an object's methods and properties for cross-cutting concerns. I'm using proxy-based AOP using ContextBoundObject.
However this doesn't work ...
0
votes
0answers
159 views
running Postsharp with monodevelop in linux
I'm looking into using PostSharp on one of my projects. The complicating factor is that I need PostSharp to work on both Windows x64 and Linux x64/Mono.
I used monodevelop ide and xps web server to ...
3
votes
2answers
234 views
How to handle cross-cutting concerns in an ASP.NET MVC 3 Application?
I've got an ASP.NET MVC 3 web application, with various components/layers such as:
Web
Services (cache, external API's, cloud services, etc)
Core (domain logic, POCO's, etc)
Repository (Entity ...
1
vote
1answer
176 views
Full stack trace missing when using Unity as AOP framework
I noticed that when using Unity as AoP framework, particularly VirtualMethodInterceptor + CallHandler.
The stack trace I got does not include the original code. Instead it has a xxx_wrapper_yyyy type ...
0
votes
3answers
462 views
Is Microsoft working on a solution for AOP in C#?
Is Microsoft working on a solution for AOP in C#? What are the (real AOP) alternatives?
Bonus question: is Code Contracts a kind of AOP?
1
vote
2answers
136 views
Event Dispatching in .NET
I've got a stock-standard ASP.NET MVC 3 web application.
I've got several cross-cutting concerns, and i wish to employ some AOP, most notably the event dispatcher pattern.
For example, i wish to ...
0
votes
1answer
54 views
What AOP and code introspection tools exist to check WinForms applications for proper event handling? [closed]
I've inherited a .NET application written in C# that apparently dates back to C# 1.0 days. Two things make this code base incredibly tedious. First, the author didn't believe in going back and ...
0
votes
0answers
116 views
Spring.Net AOP PointCut issue
We have a requirement where we need to log the usage statistics for our reports. We used two approaches:
Using ObjectNameAutoProxyCreator, we listed all reports that we need to track the usage of.
...
2
votes
2answers
466 views
Exception Handling : AOP vs Classic Handling?
I'm working on a Plugin Loading Engine (.NET), its main roles are :
Loading Plugins
Connecting them to the appropriate Data Source
Launching the Plugins
Displaying the results
All the plugins ...
3
votes
2answers
450 views
Selecting an IoC framework (for DI and AOP) [closed]
We are building a .NET application and i'd like to integrate a framework for doing DI and some AOP (injecting some diagnostics/logging code).
I know there's a multitude of frameworks out there, i am ...
0
votes
0answers
28 views
Injecting intercepts in to dll given to us reg
I just want to know after creating a separate class file for creating an aspect using postsharp compiling it and taking that dll file and inject in to another dll there by accessing the class ...
0
votes
1answer
399 views
AOP Caching with Castle Windsor
Can anyone provide a working example of how caching with Castle Windsor would work.
I presume as a starting point I define my CacheAspect which inherits from IInterceptor as follows:
public class ...
0
votes
1answer
155 views
Questin About use unity for AOP
IUnityContainer Container = new UnityContainer();
Container.RegisterType<MyService>();
container.AddNewExtension<Interception>()
.Configure<Interception>()
...
2
votes
1answer
719 views
How does OnMethodBoundaryAspect works?
I've founded the OnMethodBoundaryAspect attribute in the PostSharp library. It can intercept entry and exit from method like this:
[Serializable]
[MulticastAttributeUsage(MulticastTargets.Method, ...
10
votes
2answers
443 views
How to unit test PostSharp aspects?
After asking this question about implementing an aspect with PostSharp, it came to my mind that I might have to update the code of this aspect in the future, and that I did not want to take the risk ...
1
vote
1answer
240 views
Logging in the winform application using AOP and proxies
Let's move to details.
For example I have a class and logic named ImportAction. This class has some public and private methods. I invoke some methods. In these methods I instantiate other classes ...
1
vote
1answer
518 views
Does Spring.NET [Transaction] attribute support multiple transaction managers?
I've been using Spring.NET declarative Transaction management for some time in a code base that uses IBatis in conjunction with the TxScopeTransactionManager. I just added Spring.NET NHibernate ...
17
votes
8answers
4k views
How to make a simple dynamic proxy in C#
I want to build a dynamic proxy object to add certain functionality to an object.
basically i want to receive an object, wrap it with an object that looks identical to the original i got, and ...
3
votes
3answers
167 views
Combining Dependency Injection and dynamic Aspect Weaving
For DI I'm using Microsoft's Unity.
For dynamic Aspect Weaving I'm using Rapier-LOOM.
The aspect weaver requires me to instantiate woven objects using the factory method ...
0
votes
1answer
154 views
AOP snippet: is this Aspectj?
I encountered the following snippet about AOP. Can someone tell me what programming language is that?
public aspect MyAspect
{
// Define a pointcut matched by all methods in the ...
1
vote
1answer
384 views
Unity does not intercept WCF Service calls
I have a WCF service and I want to intercept the method CreateOrder whenever it is called :
[ServiceContract]
public interface IOrderService
{
[OperationContract]
...
10
votes
1answer
1k views
Logging, Aspect Oriented Programming, and Dependency Injection - Trying to make sense of it all
I know that logging is a prime use case for AOP. Additionally logging wrappers are also exemplified as cases when you want to use DI so that classes aren't coupled with a specific logging ...
3
votes
1answer
1k views
How to inject an attribute using a PostSharp attribute?
How can I write a PostSharp aspect to apply an attribute to a class? The scenario I'm considering is a WCF entity (or domain object) that needs to be decorated with the DataContract attribute. It ...
2
votes
3answers
365 views
How to chain message sinks in a context bound object (aspect oriented programming)
I am trying to use ContextBoundObject and message sinks to inject some aspects into my code.
My problem is that my aspect is being called only once -
when I make the call: ...
1
vote
1answer
817 views
How to set up an optional method interception with Ninject?
Suppose I have a class in which I want to sometimes* (but now always) intercept some (but not all) methods. The way I understand it, this can be done either with, say, InterceptAround() in my Ninject ...
5
votes
2answers
2k views
Easiest way to inject code to all methods and properties that don't have a custom attribute
There are a a lot of questions and answers around AOP in .NET here on Stack Overflow, often mentioning PostSharp and other third-party products. So there seems to be quite a range of AOP optons ...
2
votes
1answer
653 views
PostSharp Pointcuts
Before I start, I'd like to clarify that my current understanding of AOP terminology is as follows...
Aspects are the AOP equivalent of Classes in OOP.
Advices are the AOP equivalent of Methods in ...
2
votes
1answer
610 views
MsTest datadriven: ignore specific datarows via testattribute?
my first question on stackoverflow and I'm hoping it's not a stupid one. :)
Basically all my datadriven tests look like this one:
[TestMethod]
[DataSource(TestsDataSource)]
public void ...
1
vote
1answer
658 views
Performance advice for using Castle DynamicProxy in .NET web-apps
I am starting out with Castle DynamicProxy and I have this sample to track changes to properties of an object.
Questions:
Should I cache (in a static field) the ProxyGenerator() instance I use in ...
0
votes
1answer
34 views
Run code after/before adding item to an Collection in .NET
Is it possible to run code aftter or before the item was added to collection?
Lets say i have object Product with property Price and Warehouse object with properties IList Products and TotalPrice. I ...
1
vote
3answers
82 views
Access a .Net attribute's properties from within it's target (e.g. method)
Is it possible to access an attribute's properties from within the item to which it's applied (e.g. a method)? For example, with the code below, could I access a property on the "RequiresConnection" ...
2
votes
1answer
304 views
Using AOP techniques to intercept ADO.Net
I have quite a large code base using a variety of different ADO technologies (i.e. some EF and in some cases using ADO.Net directly).
I'm wondering if there is any way to globally intercept any ...
0
votes
2answers
114 views
Can Class Interface be used for Separation of Concerns instead of AOP?
I asked a question about Interface here How to organize class interfaces hierarchy ? and someone answered Separation of Concern.
Is there a link between this separation of concern with class ...
7
votes
5answers
2k views
3
votes
3answers
188 views
How to Inject plumbing code in the methods and properties of a .NET class?
A part of implementing the IDisposable pattern in .NET is to check if the object is disposed in all the methods/properies like so:
void SomeMethod()
{
if (Disposed)
throw new ...
2
votes
5answers
1k views
External AOP (like AspectJ) weaving for .net?
I want to do trace logging in a program by weaving in proxies in the IL. What are some current frameworks that are good for this?
(Most of the ones I've Googled are either old or don't have ...
3
votes
1answer
260 views
One framework for Dependency injection (in MVC app) and for simple AOP task (using attributes)
I have come to the point where I want to accomplish 2 tasks in my ASP.NET application that both can be done using some AOP framework but they are both of different nature:
Dependency injection for ...
3
votes
2answers
244 views
PostSharp vs DynamicProxy2 Interface Interception
I've used PostSharp in the past to do AOP and I've been checking out AOP using Autofac and DynamicProxy2 and I'm curious if there are any benefits of one of the other.
i.e. Is one more reliable, ...
1
vote
1answer
529 views
PostSharp community edition [closed]
What is and is not included in the Community Edition? How do I separate the community edition from the paid edition? It seems like they are bundled together?