You've already forked linux-packaging-mono
Imported Upstream version 4.8.0.309
Former-commit-id: 5f9c6ae75f295e057a7d2971f3a6df4656fa8850
This commit is contained in:
parent
ee1447783b
commit
94b2861243
@@ -37,9 +37,12 @@ using System.Collections.Generic;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Threading;
|
||||
using System.Diagnostics.Contracts;
|
||||
using System.Security;
|
||||
using System.Security.Policy;
|
||||
using System.Security.Permissions;
|
||||
|
||||
using Mono;
|
||||
|
||||
namespace System.Reflection {
|
||||
|
||||
abstract class RuntimeAssembly : Assembly
|
||||
@@ -151,6 +154,18 @@ namespace System.Reflection {
|
||||
return LoadWithPartialNameInternal (an.ToString (), securityEvidence, ref stackMark);
|
||||
}
|
||||
|
||||
// the security runtime requires access to the assemblyname (e.g. to get the strongname)
|
||||
public override AssemblyName GetName (bool copiedName)
|
||||
{
|
||||
|
||||
#if !MOBILE
|
||||
// CodeBase, which is restricted, will be copied into the AssemblyName object so...
|
||||
if (SecurityManager.SecurityEnabled) {
|
||||
var _ = CodeBase; // this will ensure the Demand is made
|
||||
}
|
||||
#endif
|
||||
return AssemblyName.Create (this, true);
|
||||
}
|
||||
}
|
||||
|
||||
[ComVisible (true)]
|
||||
|
||||
Reference in New Issue
Block a user