ActivityXamlServices.CreateFactory 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
CreateFactory(XamlReader, Type) |
針對指定的 XAML 讀取器,其具有指定的型別的傳回值,傳回委派方法。 |
CreateFactory<T>(XamlReader) |
針對指定的 XAML 讀取器,其具有指定的型別的傳回值,傳回委派方法。 |
CreateFactory(XamlReader, Type)
針對指定的 XAML 讀取器,其具有指定的型別的傳回值,傳回委派方法。
public:
static Func<System::Object ^> ^ CreateFactory(System::Xaml::XamlReader ^ reader, Type ^ resultType);
public static Func<object> CreateFactory (System.Xaml.XamlReader reader, Type resultType);
static member CreateFactory : System.Xaml.XamlReader * Type -> Func<obj>
Public Shared Function CreateFactory (reader As XamlReader, resultType As Type) As Func(Of Object)
參數
- reader
- XamlReader
XAML 讀取器。
- resultType
- Type
這個委派所封裝之方法的傳回值之類型。
傳回
具有指定型別傳回值之指定 XAML 讀取器的委派方法。
適用於
CreateFactory<T>(XamlReader)
針對指定的 XAML 讀取器,其具有指定的型別的傳回值,傳回委派方法。
public:
generic <typename T>
where T : class static Func<T> ^ CreateFactory(System::Xaml::XamlReader ^ reader);
public static Func<T> CreateFactory<T> (System.Xaml.XamlReader reader) where T : class;
static member CreateFactory : System.Xaml.XamlReader -> Func<'T (requires 'T : null)> (requires 'T : null)
Public Shared Function CreateFactory(Of T As Class) (reader As XamlReader) As Func(Of T)
類型參數
- T
這個委派所封裝之方法的傳回值之類型。
參數
- reader
- XamlReader
XAML 讀取器。
傳回
Func<T>
具有 T
型別傳回值之指定 XAML 讀取器的委派方法。