Example #1
0
 void ThrowIfItemNotFound()
 {
     if (!_parent.Contains(this))
     {
         throw StreamingErrors.ItemNotFound(this);
     }
 }
Example #2
0
 void ThrowIfItemNotFound()
 {
     if (!_file.Exists)
     {
         throw StreamingErrors.ItemNotFound(this);
     }
 }