Goedel.Recrypt.ResourceSet.FromTagged C# (CSharp) Method

FromTagged() public static method

Create a new instance from tagged byte input. i.e. { "ResourceSet" : {... data ... } }
public static FromTagged ( byte _Data ) : ResourceSet
_Data byte The input data.
return ResourceSet
		public static new ResourceSet FromTagged (byte[] _Data) {
			var _Input = System.Text.Encoding.UTF8.GetString(_Data);
			return FromTagged (_Input);
			}

Same methods

ResourceSet::FromTagged ( JSONReader JSONReader ) : ResourceSet
ResourceSet::FromTagged ( string _Input ) : ResourceSet