AjErl.Communication.TypeSerializer.TypeSerializer C# (CSharp) Méthode

TypeSerializer() public méthode

public TypeSerializer ( string fullname, IEnumerable properties ) : System
fullname string
properties IEnumerable
Résultat System
        public TypeSerializer(string fullname, IEnumerable<PropertyType> properties)
        {
            this.type = TypeUtilities.GetType(fullname);
            this.properties = new List<PropertyType>(properties);
        }

Same methods

TypeSerializer::TypeSerializer ( Type type ) : System