#pragma warning disable 612, 618
		internal AutoCompleteAcceptedEventArgs(SCNotification eventSource, Encoding encoding)
		{
			this._wordStartPosition = (int)eventSource.lParam;
			this._text = Utilities.IntPtrToString(encoding, eventSource.text);
		}
 /// <summary>
 ///     Initializes a new instance of the NativeScintillaEventArgs class.
 /// </summary>
 /// <param name="msg">Notification Message sent from the native Scintilla</param>
 /// <param name="notification">SCNotification structure sent from Scintilla that contains the event data</param>
 public NativeScintillaEventArgs(Message msg, SCNotification notification)
 {
     this._msg = msg;
     this._notification = notification;
 }