Ejemplo n.º 1
0
        /// <summary>
        /// Create a new CfrStreamReader object from a file.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_stream_capi.h">cef/include/capi/cef_stream_capi.h</see>.
        /// </remarks>
        public static CfrStreamReader CreateForFile(string fileName)
        {
            var call = new CfxStreamReaderCreateForFileRemoteCall();

            call.fileName = fileName;
            call.RequestExecution();
            return(CfrStreamReader.Wrap(new RemotePtr(call.__retval)));
        }
        /// <summary>
        /// Create a new CfrStreamReader object from a file.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_stream_capi.h">cef/include/capi/cef_stream_capi.h</see>.
        /// </remarks>
        public static CfrStreamReader CreateForFile(string fileName)
        {
            var connection = CfxRemoteCallContext.CurrentContext.connection;
            var call       = new CfxStreamReaderCreateForFileRemoteCall();

            call.fileName = fileName;
            call.RequestExecution(connection);
            return(CfrStreamReader.Wrap(new RemotePtr(connection, call.__retval)));
        }