Hi All,
Newbie question,
I've chain "HttpContext.Current.Request.Url.AbsoluteUri" that should return "http://localhost". It works fine when recorded as:
recorder.ExpectAndReturn(
HttpContext.Current.Request.Url.AbsoluteUri,
@"http://localhost");
But, I need RepeatAlways functionallity for the whole chain. As I found RepeatAlways works only for last call, so it will work only for Url.AbsoluteUri. As I found I can use recorder.DefaultBehavior.RepeatAlways but how it will work exactly. Its not clear from documentation. What are side effects from using 'recorder.DefaultBehavior.*'. Will it applied for my chain only or to all recodred calls?
Thanks.