ATMLProject.managers.ProjectManager.SaveATMLDocument C# (CSharp) Method

SaveATMLDocument() public static method

public static SaveATMLDocument ( string documentName, AtmlFileType atmlType, byte contentBytes, bool forceOverWrite = false ) : void
documentName string
atmlType AtmlFileType
contentBytes byte
forceOverWrite bool
return void
        public static void SaveATMLDocument( string documentName, AtmlFileType atmlType, byte[] contentBytes,
            bool forceOverWrite = false)
        {
            TestProgramSet currenTestProgramSet = Instance.CurrentTestProgramSet;
            if (currenTestProgramSet != null)
                currenTestProgramSet.SaveATMLDocument( documentName, atmlType, contentBytes, forceOverWrite );
        }