OBJ_txt2nid() private method

private OBJ_txt2nid ( string s ) : int
s string
return int
Example #1
0
        public static int TextToNID(string text)
        {
            var nid = Native.OBJ_txt2nid(text);

            if (nid == Native.NID_undef)
            {
                throw new OpenSslException();
            }

            return(nid);
        }