Joshi.Utils.Imap.Imap.ParseExtension C# (CSharp) Method

ParseExtension() private method

Parse the extension in body structure
private ParseExtension ( string &sBodyStruct, string &sString ) : bool
sBodyStruct string body structure
sString string extension
return bool
        bool ParseExtension(ref string sBodyStruct, ref string sString)
        {
            sString = "";

            // remove any spaces at the beginning and the end
            sBodyStruct = sBodyStruct.Trim();

            // check if this is NIL
            if (IsNilString(ref sBodyStruct))
                return true;

            // TO DO
            // Dont know what to do with the data.

            return true;
        }