implements user fs alimentation from web sockets
This commit is contained in:
parent
1517b48741
commit
225118d676
6 changed files with 42 additions and 9 deletions
|
|
@ -42,5 +42,14 @@ namespace cli
|
|||
return Port==0 ? $"ws://{Authority}"+Constants.LivePath:
|
||||
$"ws://{Authority}:{Port}"+Constants.LivePath;
|
||||
} }
|
||||
|
||||
|
||||
[NotMapped]
|
||||
[JsonIgnore]
|
||||
public string NStreamingUrl { get {
|
||||
return Port==0 ? $"ws://{Authority}"+Constants.StreamingPath:
|
||||
$"ws://{Authority}:{Port}"+Constants.StreamingPath;
|
||||
} }
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue