Akka.Interfaced.LogFilter.SurrogateSimpleConverter.CanConvert C# (CSharp) Méthode

CanConvert() public méthode

public CanConvert ( Type objectType ) : bool
objectType System.Type
Résultat bool
        public override bool CanConvert(Type objectType)
        {
            if (typeof(Akka.Util.ISurrogated).IsAssignableFrom(objectType))
                return true;

            return false;
        }
SurrogateSimpleConverter