DispatchProxy.Create 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Create(Type, Type) |
建立衍生自類別 |
Create<T,TProxy>() |
建立衍生自類別 |
Create(Type, Type)
建立衍生自類別 proxyType
的物件執行個體並實作介面 interfaceType
。
public:
static System::Object ^ Create(Type ^ interfaceType, Type ^ proxyType);
public static object Create (Type interfaceType, Type proxyType);
static member Create : Type * Type -> obj
Public Shared Function Create (interfaceType As Type, proxyType As Type) As Object
參數
- interfaceType
- Type
- proxyType
- Type
傳回
實作 interfaceType
的物件執行個體。
例外狀況
interfaceType
或 proxyType
為 null
。
適用於
Create<T,TProxy>()
建立衍生自類別 TProxy
的物件執行個體並實作介面 T
。
public:
generic <typename T, typename TProxy>
where TProxy : System::Reflection::DispatchProxy static T Create();
public static T Create<T,TProxy> () where TProxy : System.Reflection.DispatchProxy;
static member Create : unit -> 'T (requires 'Proxy :> System.Reflection.DispatchProxy)
Public Shared Function Create(Of T, TProxy) () As T
類型參數
- T
Proxy 應該實作的介面。
- TProxy
要用於 Proxy 類別的基類。
傳回
T
實作 T
的物件執行個體。
例外狀況
T
是一個類別,或 TProxy
已密封或沒有無參數建構函式。