1 write to _ectx
Microsoft.ML.Core (1)
Data\Repository.cs (1)
111
_ectx
= ectx;
16 references to _ectx
Microsoft.ML.Core (16)
Data\Repository.cs (16)
104
public IExceptionContext ExceptionContext =>
_ectx
;
155
_ectx
.Assert(!Disposed);
164
_ectx
.Assert(false, "Closing entries should not throw!");
209
_ectx
.Assert(false, "Why wasn't the entry found?");
240
_ectx
.Assert(!Disposed);
241
_ectx
.CheckValueOrNull(dir);
242
_ectx
.CheckParam(dir == null || !dir.Contains(".."), nameof(dir));
243
_ectx
.CheckParam(!string.IsNullOrWhiteSpace(name), nameof(name));
244
_ectx
.CheckParam(!name.Contains(".."), nameof(name));
255
_ectx
.Check(parent != null);
256
_ectx
.Check(parent.StartsWith(root));
259
_ectx
.Check(entityPath.Length > ichSplit && entityPath[ichSplit] == Path.DirectorySeparatorChar);
266
_ectx
.Check(Utils.Size(pathEnt) > 0);
267
_ectx
.Check(entityPath == Path.Combine(root, pathEnt));
278
_ectx
.Assert(!Disposed);
279
_ectx
.AssertValue(stream);