AttributedModelServices.CreatePart 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
创建可组合部件。
重载
CreatePart(Object) |
从指定的特性化对象创建一个可组合部件。 |
CreatePart(ComposablePartDefinition, Object) |
使用指定的部件定义从指定的特性化对象创建可组合部件。 |
CreatePart(Object, ReflectionContext) |
使用指定的反射上下文从指定的特性化对象创建一个可组合部件。 |
CreatePart(Object)
- Source:
- AttributedModelServices.cs
- Source:
- AttributedModelServices.cs
- Source:
- AttributedModelServices.cs
- Source:
- AttributedModelServices.cs
从指定的特性化对象创建一个可组合部件。
public:
static System::ComponentModel::Composition::Primitives::ComposablePart ^ CreatePart(System::Object ^ attributedPart);
public static System.ComponentModel.Composition.Primitives.ComposablePart CreatePart (object attributedPart);
static member CreatePart : obj -> System.ComponentModel.Composition.Primitives.ComposablePart
Public Function CreatePart (attributedPart As Object) As ComposablePart
参数
- attributedPart
- Object
特性化对象。
返回
创建的部件。
适用于
CreatePart(ComposablePartDefinition, Object)
- Source:
- AttributedModelServices.cs
- Source:
- AttributedModelServices.cs
- Source:
- AttributedModelServices.cs
- Source:
- AttributedModelServices.cs
使用指定的部件定义从指定的特性化对象创建可组合部件。
public:
static System::ComponentModel::Composition::Primitives::ComposablePart ^ CreatePart(System::ComponentModel::Composition::Primitives::ComposablePartDefinition ^ partDefinition, System::Object ^ attributedPart);
public static System.ComponentModel.Composition.Primitives.ComposablePart CreatePart (System.ComponentModel.Composition.Primitives.ComposablePartDefinition partDefinition, object attributedPart);
static member CreatePart : System.ComponentModel.Composition.Primitives.ComposablePartDefinition * obj -> System.ComponentModel.Composition.Primitives.ComposablePart
Public Function CreatePart (partDefinition As ComposablePartDefinition, attributedPart As Object) As ComposablePart
参数
- partDefinition
- ComposablePartDefinition
新部件的定义。
- attributedPart
- Object
特性化对象。
返回
创建的部件。
适用于
CreatePart(Object, ReflectionContext)
- Source:
- AttributedModelServices.cs
- Source:
- AttributedModelServices.cs
- Source:
- AttributedModelServices.cs
- Source:
- AttributedModelServices.cs
使用指定的反射上下文从指定的特性化对象创建一个可组合部件。
public:
static System::ComponentModel::Composition::Primitives::ComposablePart ^ CreatePart(System::Object ^ attributedPart, System::Reflection::ReflectionContext ^ reflectionContext);
public static System.ComponentModel.Composition.Primitives.ComposablePart CreatePart (object attributedPart, System.Reflection.ReflectionContext reflectionContext);
static member CreatePart : obj * System.Reflection.ReflectionContext -> System.ComponentModel.Composition.Primitives.ComposablePart
Public Function CreatePart (attributedPart As Object, reflectionContext As ReflectionContext) As ComposablePart
参数
- attributedPart
- Object
特性化对象。
- reflectionContext
- ReflectionContext
部件的反射上下文。
返回
创建的部件。
例外
reflectionContext
null
。