Air.SimpleAirSerialisation.Get C# (CSharp) Метод

Get() публичный Метод

Gets the specified type.
public Get ( Type type ) : IAirSerialiser
type System.Type The type.
Результат IAirSerialiser
        public IAirSerialiser Get(Type type)
        {
            //if (type.GetCustomAttributes(typeof(AirContractAttribute), true).Any())
            //{
            //    return new SimpleAirSerialiser();
            //}
            return _serialiser;
        }
SimpleAirSerialisation