Data\RowCursorUtils.cs (6)
37Contracts.CheckParam(row.IsColumnActive(row.Schema[col]), nameof(col), "column was not active");
59Contracts.CheckParam(row.IsColumnActive(row.Schema[col]), nameof(col), "column was not active");
80Contracts.CheckParam(row.IsColumnActive(row.Schema[col]), nameof(col), "column was not active");
125Contracts.CheckParam(row.IsColumnActive(row.Schema[col]), nameof(col), "column was not active");
158Contracts.CheckParam(row.IsColumnActive(row.Schema[col]), nameof(col), "column was not active");
178Contracts.CheckParam(row.IsColumnActive(row.Schema[col]), nameof(col), "column was not active");
Transforms\MetadataDispatcher.cs (6)
60Contracts.CheckParam(!getters.Any(g => g == null), nameof(getters), "Invalid getter info");
176Contracts.CheckParam(0 <= index && index < _infos.Length, nameof(index), "Out of range");
177Contracts.CheckParam(_infos[index] == null, nameof(index), "Column already registered");
413Contracts.CheckParam(type.RawType == typeof(TValue), nameof(type), "Given type doesn't match type parameter");
428Contracts.CheckParam(type.RawType == typeof(TValue), nameof(type), "Given type doesn't match type parameter");
429Contracts.CheckParam(type is PrimitiveDataViewType, nameof(type), "Must be a primitive type");