ISerializerLocator Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This interface provides a way to locate serializers for a domain model.
public interface class ISerializerLocator
public interface ISerializerLocator
type ISerializerLocator = interface
Public Interface ISerializerLocator
- Derived
Methods
GetSerializer(Guid) |
Returns a serializer that handles the specified type of domain model, or null if an appropriate serializer could not be found. |
GetSerializerFromFileName(String) |
Returns a serializer that handles files of the specified type, or null if an appropriate serializer could not be found. |
GetSerializerFromNamespace(String) |
Returns a serializer that handles the specified target namespace or null if an appropriate serializer could not be found. |
Extension Methods
GetDomainModelType(ISerializerLocator, String) |
This method takes a target namespace string and return the corresponding domain model type |
GetSerializer(ISerializerLocator, Type) |
Returns a serializer that handles the specified type of domain model, or null if an appropriate serializer could not be found. |