Dev2.Runtime.ESB.Management.Services.SecurityWrite.Write C# (CSharp) Method

Write() static private method

static private Write ( StringBuilder securitySettings ) : void
securitySettings StringBuilder
return void
        static void Write(StringBuilder securitySettings)
        {
            try
            {
                DoFileEncryption(securitySettings.ToString());

                // Deny ACL was causing "Access to the path is denied." errors 
                // so Barney decided it was OK not to do it.
            }
            catch(Exception e)
            {
                throw new InvalidDataException(string.Format("The permissions passed is not a valid list of permissions. Error: {0}", e.Message));
            }
        }

Same methods

SecurityWrite::Write ( SecuritySettingsTO securitySettingsTo ) : void