summaryrefslogtreecommitdiff
path: root/src/inc/corhost.h
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2017-05-17 18:25:05 -0700
committerGitHub <noreply@github.com>2017-05-17 18:25:05 -0700
commit13e7c4368da664a8b50228b1a5ef01a660fbb2dd (patch)
treef3f36157c201fab5bc4558beceb9f8e83fbab3f6 /src/inc/corhost.h
parentc290deb3bd5331a5d70470e6203f2b4b2059bd90 (diff)
downloadcoreclr-13e7c4368da664a8b50228b1a5ef01a660fbb2dd.tar.gz
coreclr-13e7c4368da664a8b50228b1a5ef01a660fbb2dd.tar.bz2
coreclr-13e7c4368da664a8b50228b1a5ef01a660fbb2dd.zip
Finish deleting dead CAS code from CoreLib (#11436)
Fixes #9321 and deletes CleanupToDoList.cs Delete unmanaged security implementation
Diffstat (limited to 'src/inc/corhost.h')
-rw-r--r--src/inc/corhost.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/inc/corhost.h b/src/inc/corhost.h
index 59ab23cd27..6d1d5772af 100644
--- a/src/inc/corhost.h
+++ b/src/inc/corhost.h
@@ -391,24 +391,12 @@ public:
static STARTUP_FLAGS GetStartupFlags();
- static LPCWSTR GetAppDomainManagerAsm();
-
- static LPCWSTR GetAppDomainManagerType();
-
static EInitializeNewDomainFlags GetAppDomainManagerInitializeNewDomainFlags();
- static BOOL HasAppDomainManagerInfo()
- {
- LIMITED_METHOD_CONTRACT;
- return GetAppDomainManagerAsm() != NULL && GetAppDomainManagerType() != NULL;
- }
-
static BOOL HasStarted()
{
return m_RefCount != 0;
}
-
- static BOOL IsLoadFromBlocked(); // LoadFrom, LoadFile and Load(byte[]) are blocked in certain hosting scenarios
private:
// This flag indicates if this instance was the first to load and start CoreCLR
@@ -443,11 +431,6 @@ private:
static IHostControl *m_HostControl;
- static LPCWSTR s_wszAppDomainManagerAsm;
- static LPCWSTR s_wszAppDomainManagerType;
- static EInitializeNewDomainFlags s_dwDomainManagerInitFlags;
-
-
SVAL_DECL(STARTUP_FLAGS, m_dwStartupFlags);
};