AtsTypeMapping Methods
Class Methods 2 members
Static utility for deriving ATS type IDs from CLR types.
Derives an ATS type ID from an assembly name and full type name.
public static class AtsTypeMapping{ public static string DeriveTypeId( string assemblyName, string fullTypeName) { // ... }}Parameters
assemblyName string The assembly name. fullTypeName string The full type name including namespace. Returns
string The derived type ID in format {AssemblyName}/{FullTypeName}. Derives an ATS type ID from a CLR type.
public static class AtsTypeMapping{ public static string DeriveTypeId( Type type) { // ... }}Parameters
type Type The CLR type. Returns
string The derived type ID in format {AssemblyName}/{FullTypeName}.