Class Deployment
Provides application part and localization information in the application manifest when deploying a Silverlight-based application.
Inherited Members
Namespace: System.Windows
Assembly: OpenSilver.dll
Syntax
public sealed class Deployment : DependencyObject, IDependencyObject
Constructors
| Improve this Doc View SourceDeployment()
Initializes a new instance of the Deployment class.
Declaration
public Deployment()
Exceptions
Type | Condition |
---|---|
System.InvalidOperationException | The Current property has already been initialized. |
Fields
| Improve this Doc View SourceEntryPointAssemblyProperty
Identifies the EntryPointAssembly dependency property.
Declaration
public static readonly DependencyProperty EntryPointAssemblyProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
EntryPointTypeProperty
Identifies the EntryPointType dependency property.
Declaration
public static readonly DependencyProperty EntryPointTypeProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
ExternalCallersFromCrossDomainProperty
Identifies the ExternalCallersFromCrossDomain dependency property.
Declaration
[NotImplemented]
public static readonly DependencyProperty ExternalCallersFromCrossDomainProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
ExternalPartsProperty
Identifies the ExternalParts dependency property.
Declaration
[NotImplemented]
public static readonly DependencyProperty ExternalPartsProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
InBrowserSettingsProperty
Identifies the InBrowserSettings dependency property.
Declaration
[NotImplemented]
public static readonly DependencyProperty InBrowserSettingsProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
OutOfBrowserSettingsProperty
Identifies the OutOfBrowserSettings dependency property.
Declaration
[NotImplemented]
public static readonly DependencyProperty OutOfBrowserSettingsProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
PartsProperty
Identifies the Parts dependency property.
Declaration
[NotImplemented]
public static readonly DependencyProperty PartsProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
RuntimeVersionProperty
Identifies the RuntimeVersion dependency property.
Declaration
[NotImplemented]
public static readonly DependencyProperty RuntimeVersionProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
Properties
| Improve this Doc View SourceCurrent
Gets the current Deployment object.
Declaration
public static Deployment Current { get; }
Property Value
Type | Description |
---|---|
Deployment |
EntryPointAssembly
Gets a string name that identifies which part in the Deployment is the entry point assembly.
Declaration
public string EntryPointAssembly { get; }
Property Value
Type | Description |
---|---|
System.String | A string that names the assembly that should be used as the entry point assembly. This is expected to be the name of one of the assemblies you specified as an AssemblyPart. |
EntryPointType
Gets a string that identifies the namespace and type name of the class that contains the Application entry point for your application.
Declaration
public string EntryPointType { get; }
Property Value
Type | Description |
---|---|
System.String | The namespace and type name of the class that contains the Application entry point. |
ExternalCallersFromCrossDomain
Gets a value that indicates the level of access that cross-domain callers have to the Silverlight-based application in this deployment.
Declaration
[NotImplemented]
public CrossDomainAccess ExternalCallersFromCrossDomain { get; }
Property Value
Type | Description |
---|---|
CrossDomainAccess | A value that indicates the access level of cross-domain callers. |
ExternalParts
Gets a collection of ExternalPart instances that represent the external assemblies required by the application.
Declaration
[NotImplemented]
public ExternalPartCollection ExternalParts { get; }
Property Value
Type | Description |
---|---|
ExternalPartCollection | The collection of external assembly parts. The default is an empty collection. |
InBrowserSettings
Gets an object that contains information about the application that is used for in-browser support.
Declaration
[NotImplemented]
public InBrowserSettings InBrowserSettings { get; }
Property Value
Type | Description |
---|---|
InBrowserSettings | An object that contains information about the application that is used for in-browser support. |
OutOfBrowserSettings
Gets an object that contains information about the application that is used for out-of-browser support.
Declaration
[NotImplemented]
public OutOfBrowserSettings OutOfBrowserSettings { get; }
Property Value
Type | Description |
---|---|
OutOfBrowserSettings | Information about the application that is used for out-of-browser support. |
Parts
Gets a collection of assembly parts that are included in the deployment.
Declaration
[NotImplemented]
public AssemblyPartCollection Parts { get; }
Property Value
Type | Description |
---|---|
AssemblyPartCollection | The collection of assembly parts. The default is an empty collection. |
RuntimeVersion
Gets the Silverlight runtime version that this deployment supports.
Declaration
[NotImplemented]
public string RuntimeVersion { get; }
Property Value
Type | Description |
---|---|
System.String | The Silverlight runtime version that this deployment supports. |