DesignerSerializationManager.GetSerializer(Type, Type) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得指定物件型別的序列化程式。
public:
System::Object ^ GetSerializer(Type ^ objectType, Type ^ serializerType);
public object GetSerializer (Type objectType, Type serializerType);
public object? GetSerializer (Type? objectType, Type serializerType);
member this.GetSerializer : Type * Type -> obj
Public Function GetSerializer (objectType As Type, serializerType As Type) As Object
參數
- objectType
- Type
為其擷取序列化程式的物件型別。
- serializerType
- Type
要擷取的序列化程式型別。
傳回
objectType
的序列化程式,如果找不到則為 null
。
例外狀況
objectType
或 serializerType
為 null
。
備註
您可以要求您想要的串行化程式類型。 如果指定的物件類型沒有要求的型別串行化程式,這個方法會傳回 null
。