Example #1
0
        static void Main(string[] args)
        {
            // Here you can try out the PlatformClient

            platformClient = new PlatformClient(DocuWareServerUrl, organizationName, userName, userPassword);

            var fileCabinet = platformClient.GetFileCabinet(fileCabinetName);
            // If you check fileCabinet.Fields property now, it will be "null".
            // That's because only part of the information about a file cabinet is provided at this point.
            // If you want to have the whole data available, run this call:
            fileCabinet = fileCabinet.GetFileCabinetFromSelfRelation();

            platformClient.CloseConnection();
        }
Example #2
0
        static void Main(string[] args)
        {
            // Here you can try out the PlatformClient

            platformClient = new PlatformClient(DocuWareServerUrl, organizationName, userName, userPassword);

            var fileCabinet = platformClient.GetFileCabinet(fileCabinetName);

            // If you check fileCabinet.Fields property now, it will be "null".
            // That's because only part of the information about a file cabinet is provided at this point.
            // If you want to have the whole data available, run this call:
            fileCabinet = fileCabinet.GetFileCabinetFromSelfRelation();

            platformClient.CloseConnection();
        }