Summary
The get function returns a const pointer to the string's null-terminated, internal buffer.
const char_type* get() const;
Example Code
  void GetBar(nsAString &result);
  void Func()
  {
    nsEmbedString str;
    GetBar(str);
    const PRUnichar *data = str.get();
    ...
  }