SerializerGeneratorGenerateCode Method (Type) |
Generates source codes which implement auto-generated serializer types for specified types with default configuration.
Namespace: MsgPack.SerializationAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public static IEnumerable<string> GenerateCode(
params Type[] targetTypes
)
Public Shared Function GenerateCode (
ParamArray targetTypes As Type()
) As IEnumerable(Of String)
public:
static IEnumerable<String^>^ GenerateCode(
... array<Type^>^ targetTypes
)
static member GenerateCode :
targetTypes : Type[] -> IEnumerable<string>
Parameters
- targetTypes
- Type: SystemType
The target types where serializer types to be generated.
Return Value
Type:
IEnumerableStringA file path collection which correspond to codes generated to
targetTypes.
Exceptions Remarks
Serializer types for dependent types which are refered from specified targetTypes are NOT generated.
This method just generate serializer types for specified types.
See Also