Property samples
Esta página aún no está disponible en tu idioma.
Basics
Section titled “Basics”On almost methods, you’ll see the parameter named “nodeId”. The value of this parameter can be a valid document, folder, mail or record UUID or path.
Methods
Section titled “Methods”addCategory
Section titled “addCategory ”Description:
| Method | Return values | Description |
|---|---|---|
| addCategory(String nodeId, String catId) | void | Sets a relation between a category and a node. |
Example:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using com.openkm.sdk4csharp;
namespace OKMRest{ public class Program { static void Main(string[] args) { String host = "http://localhost:8080/OpenKM"; String username = "okmAdmin"; String password = "admin"; OKMWebservice ws = OKMWebservicesFactory.newInstance(host, username, password); try { ws.addCategory("/okm:root/logo.png", "/okm:categories/test"); } catch (Exception e) { System.Console.WriteLine(e.ToString()); } } }}removeCategory
Section titled “removeCategory ”Description:
| Method | Return values | Description |
|---|---|---|
| removeCategory(String nodeId, String catId) | void | Removes a relation between a category and a node. |
Example:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using com.openkm.sdk4csharp;
namespace OKMRest{ public class Program { static void Main(string[] args) { String host = "http://localhost:8080/OpenKM"; String username = "okmAdmin"; String password = "admin"; OKMWebservice ws = OKMWebservicesFactory.newInstance(host, username, password); try { ws.removeCategory("/okm:root/logo.png", "/okm:categories/test"); } catch (Exception e) { System.Console.WriteLine(e.ToString()); } } }}addKeyword
Section titled “addKeyword ”Description:
| Method | Return values | Description |
|---|---|---|
| addKeyword(String nodeId, String keyword) | void | Adds a keyword and a node. |
- The keyword should be a single word without spaces, formats allowed:
Example:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using com.openkm.sdk4csharp;
namespace OKMRest{ public class Program { static void Main(string[] args) { String host = "http://localhost:8080/OpenKM"; String username = "okmAdmin"; String password = "admin"; OKMWebservice ws = OKMWebservicesFactory.newInstance(host, username, password); try { ws.addKeyword("/okm:root/logo.png", "test"); } catch (Exception e) { System.Console.WriteLine(e.ToString()); } } }}removeKeyword
Section titled “removeKeyword ”Description:
| Method | Return values | Description |
|---|---|---|
| removeKeyword(String nodeId, String keyword) | void | Removes a keyword from a node. |
Example:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using com.openkm.sdk4csharp;
namespace OKMRest{ public class Program { static void Main(string[] args) { String host = "http://localhost:8080/OpenKM"; String username = "okmAdmin"; String password = "admin"; OKMWebservice ws = OKMWebservicesFactory.newInstance(host, username, password); try { ws.removeKeyword("/okm:root/logo.png", "test"); } catch (Exception e) { System.Console.WriteLine(e.ToString()); } } }}setEncryption
Section titled “setEncryption ”Description:
| Method | Return values | Description |
|---|---|---|
| setEncryption(String nodeId, String cipherName) | void | Marks a document as an encrypted binary data into the repository |
- The parameter nodeId should be a document node.
- The parameter cipherName saves information about the encryption mechanism.
Example:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using com.openkm.sdk4csharp;
namespace OKMRest{ public class Program { static void Main(string[] args) { String host = "http://localhost:8080/OpenKM"; String username = "okmAdmin"; String password = "admin"; OKMWebservice ws = OKMWebservicesFactory.newInstance(host, username, password); try { ws.setEncryption("/okm:root/logo.png", "phrase"); } catch (Exception e) { System.Console.WriteLine(e.ToString()); } } }}unsetEncryption
Section titled “unsetEncryption ”Description:
| Method | Return values | Description |
|---|---|---|
| unsetEncryption(String nodeId) | void | Marks a document as a normal binary data into repository. |
- The parameter nodeId should be a document node.
Example:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using com.openkm.sdk4csharp;
namespace OKMRest{ public class Program { static void Main(string[] args) { String host = "http://localhost:8080/OpenKM"; String username = "okmAdmin"; String password = "admin"; OKMWebservice ws = OKMWebservicesFactory.newInstance(host, username, password); try { ws.unsetEncryption("/okm:root/logo.png"); } catch (Exception e) { System.Console.WriteLine(e.ToString()); } } }}setSigned
Section titled “setSigned ”Description:
| Method | Return values | Description |
|---|---|---|
| setSigned(String nodeId, boolean signed) | void | Marks a document assigned or unsigned binary data into the repository |
- The parameter nodeId should be a document node.
Example:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using com.openkm.sdk4csharp;
namespace OKMRest{ public class Program { static void Main(string[] args) { String host = "http://localhost:8080/OpenKM"; String username = "okmAdmin"; String password = "admin"; OKMWebservice ws = OKMWebservicesFactory.newInstance(host, username, password); try { ws.setSigned("/okm:root/logo.pdf", true); } catch (Exception e) { System.Console.WriteLine(e.ToString()); } } }}