mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-26 12:05:04 +01:00
Target net6.0
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Globalization;
|
||||
using Rssdp.Infrastructure;
|
||||
|
||||
namespace Rssdp
|
||||
@@ -134,11 +135,13 @@ namespace Rssdp
|
||||
{
|
||||
get
|
||||
{
|
||||
return String.Format("urn:{0}:{3}:{1}:{2}",
|
||||
this.DeviceTypeNamespace ?? String.Empty,
|
||||
this.DeviceType ?? String.Empty,
|
||||
this.DeviceVersion,
|
||||
this.DeviceClass ?? "device");
|
||||
return String.Format(
|
||||
CultureInfo.InvariantCulture,
|
||||
"urn:{0}:{3}:{1}:{2}",
|
||||
this.DeviceTypeNamespace ?? String.Empty,
|
||||
this.DeviceType ?? String.Empty,
|
||||
this.DeviceVersion,
|
||||
this.DeviceClass ?? "device");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user