ToByteArray() private static method

private static ToByteArray ( String value ) : Byte[]
value String
return Byte[]
Example #1
0
 /// <summary>将指定的 <see cref="T:System.String" /> 转换为 <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary" /> 对象。</summary>
 /// <returns>从 <paramref name="value" /> 获取的 <see cref="T:System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary" /> 对象。</returns>
 /// <param name="value">要转换的 String。</param>
 public static SoapHexBinary Parse(string value)
 {
     return(new SoapHexBinary(SoapHexBinary.ToByteArray(SoapType.FilterBin64(value))));
 }