Show / Hide Table of Contents

Class Deployment

Provides application part and localization information in the application manifest when deploying a Silverlight-based application.

Inheritance
System.Object
DependencyObject
Deployment
Inherited Members
DependencyObject.GetValue(DependencyProperty)
DependencyObject.SetCurrentValue(DependencyProperty, Object)
DependencyObject.ReadLocalValue(DependencyProperty)
DependencyObject.SetValue(DependencyProperty, Object)
DependencyObject.SetValue(DependencyPropertyKey, Object)
DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs)
DependencyObject.CoerceValue(DependencyProperty)
DependencyObject.Dispatcher
DependencyObject.INTERNAL_OnAttachedToVisualTree()
DependencyObject.INTERNAL_OnDetachedFromVisualTree()
DependencyObject.ClearValue(DependencyProperty)
DependencyObject.ClearValue(DependencyPropertyKey)
DependencyObject.CheckAccess()
DependencyObject.GetAnimationBaseValue(DependencyProperty)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows
Assembly: OpenSilver.dll
Syntax
public sealed class Deployment : DependencyObject, IDependencyObject

Constructors

| Improve this Doc View Source

Deployment()

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 Source

EntryPointAssemblyProperty

Identifies the EntryPointAssembly dependency property.

Declaration
public static readonly DependencyProperty EntryPointAssemblyProperty
Field Value
Type Description
DependencyProperty
| Improve this Doc View Source

EntryPointTypeProperty

Identifies the EntryPointType dependency property.

Declaration
public static readonly DependencyProperty EntryPointTypeProperty
Field Value
Type Description
DependencyProperty
| Improve this Doc View Source

ExternalCallersFromCrossDomainProperty

Identifies the ExternalCallersFromCrossDomain dependency property.

Declaration
[NotImplemented]
public static readonly DependencyProperty ExternalCallersFromCrossDomainProperty
Field Value
Type Description
DependencyProperty
| Improve this Doc View Source

ExternalPartsProperty

Identifies the ExternalParts dependency property.

Declaration
[NotImplemented]
public static readonly DependencyProperty ExternalPartsProperty
Field Value
Type Description
DependencyProperty
| Improve this Doc View Source

InBrowserSettingsProperty

Identifies the InBrowserSettings dependency property.

Declaration
[NotImplemented]
public static readonly DependencyProperty InBrowserSettingsProperty
Field Value
Type Description
DependencyProperty
| Improve this Doc View Source

OutOfBrowserSettingsProperty

Identifies the OutOfBrowserSettings dependency property.

Declaration
[NotImplemented]
public static readonly DependencyProperty OutOfBrowserSettingsProperty
Field Value
Type Description
DependencyProperty
| Improve this Doc View Source

PartsProperty

Identifies the Parts dependency property.

Declaration
[NotImplemented]
public static readonly DependencyProperty PartsProperty
Field Value
Type Description
DependencyProperty
| Improve this Doc View Source

RuntimeVersionProperty

Identifies the RuntimeVersion dependency property.

Declaration
[NotImplemented]
public static readonly DependencyProperty RuntimeVersionProperty
Field Value
Type Description
DependencyProperty

Properties

| Improve this Doc View Source

Current

Gets the current Deployment object.

Declaration
public static Deployment Current { get; }
Property Value
Type Description
Deployment
| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

Extension Methods

DependencyObjectHelper.GetSelfAndAncestors(DependencyObject)
VisualTreeExtensions.GetVisualAncestors(DependencyObject)
VisualTreeExtensions.GetVisualAncestorsAndSelf(DependencyObject)
VisualTreeExtensions.GetVisualChildren(DependencyObject)
VisualTreeExtensions.GetVisualChildrenAndSelf(DependencyObject)
VisualTreeExtensions.GetVisualDescendants(DependencyObject)
VisualTreeExtensions.GetVisualDescendantsAndSelf(DependencyObject)
VisualTreeExtensions.GetVisualSiblings(DependencyObject)
VisualTreeExtensions.GetVisualSiblingsAndSelf(DependencyObject)
  • Improve this Doc
  • View Source