Goedel.Cryptography.Jose.Key.From C# (CSharp) Method

From() public static method

Create a new instance from untagged string input. i.e. {... data ... }
public static From ( string _Input ) : Key
_Input string The input data.
return Key
		public static new Key From (string _Input) {
			StringReader _Reader = new StringReader (_Input);
            JSONReader JSONReader = new JSONReader (_Reader);
			return new Key (JSONReader);
			}

Same methods

Key::From ( byte _Data ) : Key