We need you! We're working hard on the next version of Developer Fusion -
Let us know what you think we should be up to!
- namespace System.Runtime.Hosting
- {
- [Serializable()]
- [System.Runtime.InteropServices.ComVisible(true)]
- public sealed class ActivationArguments
- {
- private ActivationArguments()
- {
- }
-
-
-
- private bool m_useFusionActivationContext = false;
- internal bool UseFusionActivationContext {
- get { return m_useFusionActivationContext; }
- }
-
-
-
-
- private bool m_activateInstance = false;
- internal bool ActivateInstance {
- get { return m_activateInstance; }
- set { m_activateInstance = value; }
- }
-
- private string m_appFullName;
- internal string ApplicationFullName {
- get { return m_appFullName; }
- }
-
- private string[] m_appManifestPaths;
- internal string[] ApplicationManifestPaths {
- get { return m_appManifestPaths; }
- }
-
-
- private string[] m_activationData;
- public string[] ActivationData {
- get { return m_activationData; }
- }
- }
- }