Exemple #1
0
 /// <summary>
 /// Disconnects the port.
 /// </summary>
 /// <exception cref="System.InvalidOperationException">Thrown when an internal IO error occurrs.</exception>
 /// <since_tizen> 9 </since_tizen>
 public void Disconnect()
 {
     Interop.LibRPCPort.ErrorCode err = Interop.LibRPCPort.Port.Disconnect(Handle);
     if (err != Interop.LibRPCPort.ErrorCode.None)
     {
         throw new InvalidOperationException();
     }
 }
Exemple #2
0
 /// <summary>
 /// Unshares the private file.
 /// </summary>
 /// <exception cref="InvalidIOException">Thrown when an internal IO error occurrs.</exception>
 /// <since_tizen> 8 </since_tizen>
 public void UnshareFile()
 {
     Interop.LibRPCPort.ErrorCode err = Interop.LibRPCPort.Port.UnsetPrivateSharing(Handle);
     if (err != Interop.LibRPCPort.ErrorCode.None)
     {
         throw new InvalidIOException();
     }
 }
Exemple #3
0
        /// <summary>
        /// Shares the private file with other applications.
        /// </summary>
        /// <seealso cref="ShareFile(IEnumerable{string})"/>
        /// <param name="path">The file path to be shared.</param>
        /// <exception cref="InvalidIOException">Thrown when an internal IO error occurrs.</exception>
        /// <since_tizen> 8 </since_tizen>
        public void ShareFile(string path)
        {
            if (path == null)
            {
                throw new InvalidIOException();
            }

            Interop.LibRPCPort.ErrorCode err = Interop.LibRPCPort.Port.SetPrivateSharing(Handle, path);
            if (err != Interop.LibRPCPort.ErrorCode.None)
            {
                throw new InvalidIOException();
            }
        }
Exemple #4
0
        /// <summary>
        /// Shares private files with other applications.
        /// </summary>
        /// <remarks>
        /// If all added paths are under the caller application's data path which can be obtained, those will be shared to the target application.
        /// Platform will grant a temporary permission to the target application for those files and revoke it when the target application is terminated or UnshareFile() is called.
        /// Paths should be regular files. The target application can just read them.
        /// Note that the target application doesn't have read permission of the directory that is obtained by caller's data path. You should open the file path with read only mode directly.
        /// </remarks>
        /// <param name="paths">The file paths to be shared.</param>
        /// <exception cref="InvalidIOException">Thrown when an internal IO error occurrs.</exception>
        /// <since_tizen> 8 </since_tizen>
        public void ShareFile(IEnumerable <string> paths)
        {
            if (paths == null)
            {
                throw new InvalidIOException();
            }

            string[] pathArray = paths.ToArray <string>();
            Interop.LibRPCPort.ErrorCode err = Interop.LibRPCPort.Port.SetPrivateSharingArray(Handle, pathArray, (uint)pathArray.Length);
            if (err != Interop.LibRPCPort.ErrorCode.None)
            {
                throw new InvalidIOException();
            }
        }