SimpleFramework.Xml.Util.Registry.Bind C# (CSharp) Method

Bind() public method

This is used to register a binding between a type and the converter used to serialize and deserialize it. During the serialization process the converters are retrieved and used to convert the object members to XML.
public Bind ( Class type, Class converter ) : Registry
type Class /// this is the object type to bind to a converter ///
converter Class /// this is the converter class to be used ///
return Registry
      public Registry Bind(Class type, Class converter) {
         if(type != null) {
            binder.Bind(type, converter);
         }
         return this;
      }
      /// <summary>

Same methods

Registry::Bind ( Class type, Converter converter ) : Registry