1 implementation of CanWrite
Microsoft.ML.Core (1)
Data\IFileHandle.cs (1)
88public bool CanWrite => !_wrote && !IsDisposed;
3 references to CanWrite
Microsoft.ML.Data (3)
Commands\DataCommand.cs (1)
405Contracts.CheckParam(file.CanWrite, nameof(file), "Must be writable");
Commands\SaveDataCommand.cs (1)
194ch.CheckParam(file.CanWrite, nameof(file), "Cannot write to file");
Commands\TrainCommand.cs (1)
322ch.CheckParam(output != null && output.CanWrite, nameof(output));