Catel.ReSharper.Arguments.IsNotNullOrEmptyContextAction.IsArgumentTypeTheExpected C# (CSharp) Метод

IsArgumentTypeTheExpected() защищенный Метод

protected IsArgumentTypeTheExpected ( IType type ) : bool
type IType
Результат bool
        protected override bool IsArgumentTypeTheExpected(IType type)
        {
            IDeclaredType declaredType;
            return type != null && (type.IsString() || ((declaredType = type.GetScalarType()) != null && declaredType.GetClrName().FullName == "System.Guid"));
        }