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

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