Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve MacLean <stmaclea@microsoft.com>2019-04-06 00:10:09 +0300
committerdotnet-bot <anirudhagnihotry098@gmail.com>2019-04-09 23:28:23 +0300
commit7cf81c817b1056c5984b1167c4cebc926041cd5f (patch)
tree41a9738c76f3531f7bf702b0b6e2996624a56c17 /netcore/System.Private.CoreLib/shared/System/Runtime/Loader/AssemblyLoadContext.cs
parentb7d729d2ef631096bd7a999beaeea08f2f604803 (diff)
Whitespace (dotnet/coreclr#23772)
Signed-off-by: dotnet-bot <anirudhagnihotry098@gmail.com>
Diffstat (limited to 'netcore/System.Private.CoreLib/shared/System/Runtime/Loader/AssemblyLoadContext.cs')
-rw-r--r--netcore/System.Private.CoreLib/shared/System/Runtime/Loader/AssemblyLoadContext.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/netcore/System.Private.CoreLib/shared/System/Runtime/Loader/AssemblyLoadContext.cs b/netcore/System.Private.CoreLib/shared/System/Runtime/Loader/AssemblyLoadContext.cs
index a2c8df0ba8a..8316e1093e7 100644
--- a/netcore/System.Private.CoreLib/shared/System/Runtime/Loader/AssemblyLoadContext.cs
+++ b/netcore/System.Private.CoreLib/shared/System/Runtime/Loader/AssemblyLoadContext.cs
@@ -150,7 +150,7 @@ namespace System.Runtime.Loader
// Event handler for resolving native libraries.
// This event is raised if the native library could not be resolved via
// the default resolution logic [including AssemblyLoadContext.LoadUnmanagedDll()]
- //
+ //
// Inputs: Invoking assembly, and library name to resolve
// Returns: A handle to the loaded native library
public event Func<Assembly, string, IntPtr> ResolvingUnmanagedDll;
@@ -158,7 +158,7 @@ namespace System.Runtime.Loader
// Event handler for resolving managed assemblies.
// This event is raised if the managed assembly could not be resolved via
// the default resolution logic [including AssemblyLoadContext.Load()]
- //
+ //
// Inputs: The AssemblyLoadContext and AssemblyName to be loaded
// Returns: The Loaded assembly object.
public event Func<AssemblyLoadContext, AssemblyName, Assembly> Resolving;
@@ -243,7 +243,7 @@ namespace System.Runtime.Loader
return Assembly.Load(assemblyName, ref stackMark, _nativeAssemblyLoadContext);
}
- // These methods load assemblies into the current AssemblyLoadContext
+ // These methods load assemblies into the current AssemblyLoadContext
// They may be used in the implementation of an AssemblyLoadContext derivation
public Assembly LoadFromAssemblyPath(string assemblyPath)
{
@@ -288,7 +288,7 @@ namespace System.Runtime.Loader
return InternalLoadFromPath(assemblyPath, nativeImagePath);
}
- }
+ }
public Assembly LoadFromStream(Stream assembly)
{
@@ -362,7 +362,7 @@ namespace System.Runtime.Loader
{
//defer to default coreclr policy of loading unmanaged dll
return IntPtr.Zero;
- }
+ }
public void Unload()
{
@@ -387,7 +387,7 @@ namespace System.Runtime.Loader
}
}
}
- }
+ }
private void VerifyIsAlive()
{