Air.SimpleAirSerialisation.Get C# (CSharp) Method

Get() public method

Gets the specified type.
public Get ( Type type ) : IAirSerialiser
type System.Type The type.
return IAirSerialiser
        public IAirSerialiser Get(Type type)
        {
            //if (type.GetCustomAttributes(typeof(AirContractAttribute), true).Any())
            //{
            //    return new SimpleAirSerialiser();
            //}
            return _serialiser;
        }
SimpleAirSerialisation