Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public ITemplateServiceConfiguration CreateConfiguration()
/// A simple sandbox helper to create the <see cref="IRazorEngineService"/>
/// in the new <see cref="AppDomain"/>.
/// </summary>
public class SanboxHelper : CrossAppDomainObject
public class SandboxHelper : CrossAppDomainObject
{
/// <summary>
/// Create the <see cref="IRazorEngineService"/> in the new <see cref="AppDomain"/>.
Expand Down Expand Up @@ -138,11 +138,11 @@ internal IsolatedRazorEngineService(IConfigCreator configCreator, IAppDomainFact

ObjectHandle handle =
Activator.CreateInstanceFrom(
_appDomain, typeof(SanboxHelper).Assembly.ManifestModule.FullyQualifiedName,
typeof(SanboxHelper).FullName
_appDomain, typeof(SandboxHelper).Assembly.ManifestModule.FullyQualifiedName,
typeof(SandboxHelper).FullName
);

using (var helper = (SanboxHelper)handle.Unwrap())
using (var helper = (SandboxHelper)handle.Unwrap())
{
_proxy = helper.CreateEngine(config);
}
Expand Down