Class AssemblyPart
An assembly part is an assembly that is to be included in a Silverlight-based application package (.xap).
Inherited Members
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
[NotImplemented]
public sealed class AssemblyPart : DependencyObject, IDependencyObject
Fields
| Improve this Doc View SourceSourceProperty
Identifies the Source dependency property.
Declaration
public static readonly DependencyProperty SourceProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
Properties
| Improve this Doc View SourceSource
Gets the System.Uri that identifies an assembly as an assembly part.
Declaration
public string Source { get; set; }
Property Value
Type | Description |
---|---|
System.String | A System.String that is the assembly, which is identified as an assembly part. |
Methods
| Improve this Doc View SourceLoad(Stream)
Converts a System.IO.Stream to an System.Reflection.Assembly that is subsequently loaded into the current application domain.
Declaration
public Assembly Load(Stream assemblyStream)
Parameters
Type | Name | Description |
---|---|---|
System.IO.Stream | assemblyStream | The System.IO.Stream to load into the current application domain. |
Returns
Type | Description |
---|---|
System.Reflection.Assembly | The System.Reflection.Assembly that is subsequently loaded into the current application domain. |