Example #1
0
        public StreamRef(SerializationInfo info, StreamingContext context)
        {
            var value = (string)info.GetValue("path", typeof(string));

            Path = StreamPath.Deserialize(value);
        }
Example #2
0
 public static StreamRef Deserialize(string path) => Deserialize(StreamPath.Deserialize(path));