AtsTypeMapping Methods
ClassMethods2 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
assemblyNamestringThe assembly name.fullTypeNamestringThe full type name including namespace.Returns
stringThe 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
typeTypeThe CLR type.Returns
stringThe derived type ID in format {AssemblyName}/{FullTypeName}.