Rick Strahl

Results 180 comments of Rick Strahl

There is no URL object in this implementation because it doesn't make sense to resolve external assets that way - there is no Web site so there's no base folder...

Ok so I gave this some more thought and played around with this a little more. I suppose here's what could be done: It's possible to resolve `~` **relative** to...

I've added the following code - be interested in comments: ```cs /// /// Resolves a ~ Url by removing ~ and using `/` /// path. /// /// This is not...

If you use AppDomains any objects you use have to be either `[Serializable]` or inherit from `MarshalByRefObject` otherwise you'll get remoting errors as the objects won;t be able to pass...

There's an option `ThrowExceptions` to turn on the exception behavior. By default this value is false and exception are handled and return an error message instead. Serializable exceptions can occur...

Hmmm... maybe RazorEngineConfiguration should just be `[Serializable]` instead of `MarshalByRefObject`. There seems to be no good reason for that to be `MarshalByRefObject`, since it's just a state object. Making the...

Not sure what to make of this. If an assembly fails to load you would get a different exception. The error here looks like its failing on the actual add...

I haven't tried your Clonable solution yet, but I don't think that's the problem. The items in the example above aren't copied/cloned because it's a move operation so just using...

So I tried out your `IDragItemClonable` interface but couldn't get that to work - where do I specify that the interface is used or is that automatic? I have only...

Aaargh... So although the code blows up on the line above it looks like it actually works to move items. For now I added the following to my code: ```cs...