Goedel.Mesh.SSHProfile.From C# (CSharp) Method

From() public static method

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

Same methods

SSHProfile::From ( byte _Data ) : SSHProfile