├── .gitignore ├── API Documentation Samples ├── C# Example │ ├── SampleAutotaskAPI.sln │ └── SampleAutotaskAPI │ │ ├── AutotaskAPITests.cs │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── SampleAutotaskAPI.csproj │ │ ├── Web References │ │ └── Autotask.Net.Webservices │ │ │ ├── ATWSResponse1.datasource │ │ │ ├── ATWSZoneInfo1.datasource │ │ │ ├── Attachment1.datasource │ │ │ ├── EntityInfo1.datasource │ │ │ ├── Field1.datasource │ │ │ ├── Reference.cs │ │ │ ├── Reference.map │ │ │ └── atws.wsdl │ │ └── app.config ├── README.txt └── VB Example │ ├── SampleAutotaskAPIVB.sln │ └── SampleAutotaskAPIVB │ ├── AutotaskAPITests.vb │ ├── Module1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── SampleAutotaskAPIVB.vbproj │ ├── Web References │ └── Autotask.Net.Webservices │ │ ├── ATWSResponse.datasource │ │ ├── ATWSZoneInfo.datasource │ │ ├── Attachment.datasource │ │ ├── EntityInfo.datasource │ │ ├── Field.datasource │ │ ├── Reference.map │ │ ├── Reference.vb │ │ └── atws.wsdl │ └── app.config ├── Connection Examples ├── NodeJs Example.js ├── PowerShell Example.ps1 └── Python Example.py ├── Emoticon Survey Example ├── Basic Emoticon Sample Notification Template HTML.html └── EmoticonWebProject │ ├── EmoticonWebProject.sln │ ├── EmoticonWebProject │ ├── Content │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── Default.aspx │ ├── Default.aspx.cs │ ├── Default.aspx.designer.cs │ ├── EmoticonWebProject.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── PublishProfiles │ │ │ ├── Emoticon - Web Deploy.pubxml │ │ │ └── Emoticon - Web Deploy.pubxml.user │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Scripts │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-3.1.1.intellisense.js │ │ ├── jquery-3.1.1.js │ │ ├── jquery-3.1.1.min.js │ │ ├── jquery-3.1.1.min.map │ │ ├── jquery-3.1.1.slim.js │ │ ├── jquery-3.1.1.slim.min.js │ │ └── jquery-3.1.1.slim.min.map │ ├── Web References │ │ └── Autotask │ │ │ ├── ATWSResponse.datasource │ │ │ ├── ATWSZoneInfo.datasource │ │ │ ├── Attachment.datasource │ │ │ ├── EntityInfo.datasource │ │ │ ├── Field.datasource │ │ │ ├── Reference.cs │ │ │ ├── Reference.map │ │ │ └── atws.wsdl │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── packages.config │ └── packages │ ├── Microsoft.Net.Compilers.2.3.2 │ ├── Microsoft.Net.Compilers.2.3.2.nupkg │ ├── ThirdPartyNotices.rtf │ ├── build │ │ └── Microsoft.Net.Compilers.props │ └── tools │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll │ │ ├── Microsoft.CSharp.Core.targets │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.Scripting.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.DiaSymReader.Native.amd64.dll │ │ ├── Microsoft.DiaSymReader.Native.x86.dll │ │ ├── Microsoft.VisualBasic.Core.targets │ │ ├── Microsoft.Win32.Primitives.dll │ │ ├── System.AppContext.dll │ │ ├── System.Collections.Immutable.dll │ │ ├── System.Console.dll │ │ ├── System.Diagnostics.FileVersionInfo.dll │ │ ├── System.Diagnostics.Process.dll │ │ ├── System.Diagnostics.StackTrace.dll │ │ ├── System.IO.Compression.dll │ │ ├── System.IO.FileSystem.DriveInfo.dll │ │ ├── System.IO.FileSystem.Primitives.dll │ │ ├── System.IO.FileSystem.dll │ │ ├── System.IO.Pipes.dll │ │ ├── System.Reflection.Metadata.dll │ │ ├── System.Security.AccessControl.dll │ │ ├── System.Security.Claims.dll │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ ├── System.Security.Cryptography.Encoding.dll │ │ ├── System.Security.Cryptography.Primitives.dll │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ ├── System.Security.Principal.Windows.dll │ │ ├── System.Text.Encoding.CodePages.dll │ │ ├── System.Threading.Thread.dll │ │ ├── System.ValueTuple.dll │ │ ├── System.Xml.ReaderWriter.dll │ │ ├── System.Xml.XPath.XDocument.dll │ │ ├── System.Xml.XPath.dll │ │ ├── System.Xml.XmlDocument.dll │ │ ├── VBCSCompiler.exe │ │ ├── VBCSCompiler.exe.config │ │ ├── csc.exe │ │ ├── csc.exe.config │ │ ├── csc.rsp │ │ ├── csi.exe │ │ ├── csi.exe.config │ │ ├── csi.rsp │ │ ├── vbc.exe │ │ ├── vbc.exe.config │ │ └── vbc.rsp │ ├── bootstrap.3.3.7 │ ├── bootstrap.3.3.7.nupkg │ └── content │ │ ├── Content │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── Scripts │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ │ └── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── jQuery.3.1.1 │ ├── Content │ └── Scripts │ │ ├── jquery-3.1.1-vsdoc.js │ │ ├── jquery-3.1.1.js │ │ ├── jquery-3.1.1.min.js │ │ ├── jquery-3.1.1.min.map │ │ ├── jquery-3.1.1.slim.js │ │ ├── jquery-3.1.1.slim.min.js │ │ └── jquery-3.1.1.slim.min.map │ ├── Tools │ ├── common.ps1 │ ├── install.ps1 │ ├── jquery-3.1.1.intellisense.js │ └── uninstall.ps1 │ └── jQuery.3.1.1.nupkg ├── LICENSE ├── README.md └── Upload Attachment Example ├── Upload Attachment Example.sln ├── Upload Attachment Example ├── Content │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ └── themes │ │ └── base │ │ ├── accordion.css │ │ ├── all.css │ │ ├── autocomplete.css │ │ ├── base.css │ │ ├── button.css │ │ ├── core.css │ │ ├── datepicker.css │ │ ├── dialog.css │ │ ├── draggable.css │ │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ ├── ui-icons_cd0a0a_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui.css │ │ ├── jquery-ui.min.css │ │ ├── menu.css │ │ ├── progressbar.css │ │ ├── resizable.css │ │ ├── selectable.css │ │ ├── selectmenu.css │ │ ├── slider.css │ │ ├── sortable.css │ │ ├── spinner.css │ │ ├── tabs.css │ │ ├── theme.css │ │ └── tooltip.css ├── Default.aspx ├── Default.aspx.cs ├── Default.aspx.designer.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── PublishProfiles │ │ ├── Attachment - Web Deploy.pubxml │ │ └── Attachment - Web Deploy.pubxml.user │ ├── Settings.Designer.cs │ └── Settings.settings ├── Scripts │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.12.4.intellisense.js │ ├── jquery-1.12.4.js │ ├── jquery-1.12.4.min.js │ ├── jquery-1.12.4.min.map │ ├── jquery-ui-1.12.1.js │ └── jquery-ui-1.12.1.min.js ├── Upload Attachment Example.csproj ├── Web References │ └── Autotask │ │ ├── ATWSResponse.datasource │ │ ├── ATWSZoneInfo.datasource │ │ ├── Attachment.datasource │ │ ├── EntityInfo.datasource │ │ ├── Field.datasource │ │ ├── Reference.cs │ │ ├── Reference.map │ │ └── atws.wsdl ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── packages.config └── packages ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7 ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7.nupkg ├── build │ └── net45 │ │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props ├── content │ ├── net45 │ │ ├── web.config.install.xdt │ │ └── web.config.uninstall.xdt │ └── net46 │ │ ├── web.config.install.xdt │ │ └── web.config.uninstall.xdt ├── lib │ └── net45 │ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll │ │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml └── tools │ └── net45 │ ├── install.ps1 │ └── uninstall.ps1 ├── Microsoft.Net.Compilers.2.3.2 ├── Microsoft.Net.Compilers.2.3.2.nupkg ├── ThirdPartyNotices.rtf ├── build │ └── Microsoft.Net.Compilers.props └── tools │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll │ ├── Microsoft.CSharp.Core.targets │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll │ ├── Microsoft.CodeAnalysis.CSharp.dll │ ├── Microsoft.CodeAnalysis.Scripting.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ ├── Microsoft.CodeAnalysis.dll │ ├── Microsoft.DiaSymReader.Native.amd64.dll │ ├── Microsoft.DiaSymReader.Native.x86.dll │ ├── Microsoft.VisualBasic.Core.targets │ ├── Microsoft.Win32.Primitives.dll │ ├── System.AppContext.dll │ ├── System.Collections.Immutable.dll │ ├── System.Console.dll │ ├── System.Diagnostics.FileVersionInfo.dll │ ├── System.Diagnostics.Process.dll │ ├── System.Diagnostics.StackTrace.dll │ ├── System.IO.Compression.dll │ ├── System.IO.FileSystem.DriveInfo.dll │ ├── System.IO.FileSystem.Primitives.dll │ ├── System.IO.FileSystem.dll │ ├── System.IO.Pipes.dll │ ├── System.Reflection.Metadata.dll │ ├── System.Security.AccessControl.dll │ ├── System.Security.Claims.dll │ ├── System.Security.Cryptography.Algorithms.dll │ ├── System.Security.Cryptography.Encoding.dll │ ├── System.Security.Cryptography.Primitives.dll │ ├── System.Security.Cryptography.X509Certificates.dll │ ├── System.Security.Principal.Windows.dll │ ├── System.Text.Encoding.CodePages.dll │ ├── System.Threading.Thread.dll │ ├── System.ValueTuple.dll │ ├── System.Xml.ReaderWriter.dll │ ├── System.Xml.XPath.XDocument.dll │ ├── System.Xml.XPath.dll │ ├── System.Xml.XmlDocument.dll │ ├── VBCSCompiler.exe │ ├── VBCSCompiler.exe.config │ ├── csc.exe │ ├── csc.exe.config │ ├── csc.rsp │ ├── csi.exe │ ├── csi.exe.config │ ├── csi.rsp │ ├── vbc.exe │ ├── vbc.exe.config │ └── vbc.rsp ├── bootstrap.3.3.7 ├── bootstrap.3.3.7.nupkg └── content │ ├── Content │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map │ ├── Scripts │ ├── bootstrap.js │ └── bootstrap.min.js │ └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── jQuery.1.12.4 ├── Content │ └── Scripts │ │ ├── jquery-1.12.4-vsdoc.js │ │ ├── jquery-1.12.4.js │ │ ├── jquery-1.12.4.min.js │ │ └── jquery-1.12.4.min.map ├── Tools │ ├── common.ps1 │ ├── install.ps1 │ ├── jquery-1.12.4.intellisense.js │ └── uninstall.ps1 └── jQuery.1.12.4.nupkg └── jQuery.UI.Combined.1.12.1 ├── Content ├── Content │ └── themes │ │ └── base │ │ ├── accordion.css │ │ ├── all.css │ │ ├── autocomplete.css │ │ ├── base.css │ │ ├── button.css │ │ ├── core.css │ │ ├── datepicker.css │ │ ├── dialog.css │ │ ├── draggable.css │ │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ ├── ui-icons_cd0a0a_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui.css │ │ ├── jquery-ui.min.css │ │ ├── menu.css │ │ ├── progressbar.css │ │ ├── resizable.css │ │ ├── selectable.css │ │ ├── selectmenu.css │ │ ├── slider.css │ │ ├── sortable.css │ │ ├── spinner.css │ │ ├── tabs.css │ │ ├── theme.css │ │ └── tooltip.css └── Scripts │ ├── jquery-ui-1.12.1.js │ └── jquery-ui-1.12.1.min.js ├── Tools ├── common.ps1 ├── install.ps1 └── uninstall.ps1 └── jQuery.UI.Combined.1.12.1.nupkg /.gitignore: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # This .gitignore file was automatically created by Microsoft(R) Visual Studio. 3 | ################################################################################ 4 | 5 | /.vs/slnx.sqlite 6 | /.vs/Sample-Code/v15/.suo 7 | /.vs/ProjectSettings.json 8 | *.suo 9 | /API Documentation Samples/C# Example/SampleAutotaskAPI/obj/Release 10 | /API Documentation Samples/C# Example/SampleAutotaskAPI/obj/Debug 11 | /API Documentation Samples/VB Example/SampleAutotaskAPIVB/obj/Release 12 | /API Documentation Samples/VB Example/SampleAutotaskAPIVB/obj/Debug 13 | /API Documentation Samples/C# Example/.vs/SampleAutotaskAPI/v15/Server/sqlite3 14 | /Upload Attachment Example/Upload Attachment Example/obj/Release 15 | /Upload Attachment Example/Upload Attachment Example/obj/Debug 16 | /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/obj/Release 17 | /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/obj/Debug 18 | /.vs 19 | /API Documentation Samples/C# Example/SampleAutotaskAPI/bin/Debug 20 | *.user 21 | -------------------------------------------------------------------------------- /API Documentation Samples/C# Example/SampleAutotaskAPI.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleAutotaskAPI", "SampleAutotaskAPI\SampleAutotaskAPI.csproj", "{5CFF7B9C-63F1-449B-A4FE-454A44F22095}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {5CFF7B9C-63F1-449B-A4FE-454A44F22095}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {5CFF7B9C-63F1-449B-A4FE-454A44F22095}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {5CFF7B9C-63F1-449B-A4FE-454A44F22095}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {5CFF7B9C-63F1-449B-A4FE-454A44F22095}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /API Documentation Samples/C# Example/SampleAutotaskAPI/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Configuration; 3 | 4 | using SampleAutotaskAPI.Autotask.Net.Webservices; 5 | 6 | namespace SampleAutotaskAPI 7 | { 8 | public class Program 9 | { 10 | public static void Main() 11 | { 12 | try 13 | { 14 | AutotaskApiTests test = new AutotaskApiTests( 15 | ConfigurationManager.AppSettings["APIUsername"], 16 | ConfigurationManager.AppSettings["APIPassword"], 17 | ConfigurationManager.AppSettings["APITrackingID"]); 18 | 19 | // Search for a resource given a username 20 | long resourceId = test.FindResource("RESOURCE USER NAME"); 21 | long resourceId2 = test.FindResource("RESOURCE USER NAME"); 22 | 23 | // Create Ticket Note Impersonated as resource above 24 | AccountNote note = test.CreateAccountNoteAs(resourceId, resourceId2, DateTime.Now, DateTime.Now.AddDays(5)); 25 | 26 | // Search for a Contact given an email address 27 | Contact contact = test.FindContact("CONTACT EMAIL ADDRESS"); 28 | 29 | // Update Contact UDF 30 | contact = test.UpdateContactUdf(contact, "UDF NAME", "UDF VALUE"); 31 | 32 | // Update Contact Picklist UDF 33 | contact = test.UpdateContactUdfPicklist(contact, "UDF NAME", "UDF PICKLIST LABEL"); 34 | 35 | // Create NEW Contact with UDF 36 | Contact newContact = test.CreateContact(Convert.ToInt64(contact.AccountID), "FIRST NAME", "LAST NAME", "EMAIL", "UDF NAME", "UDF VALUE"); 37 | 38 | } 39 | catch (Exception ex) 40 | { 41 | throw new Exception("Error: " + ex.Message); 42 | } 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /API Documentation Samples/C# Example/SampleAutotaskAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("SampleAutotaskAPI")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Microsoft")] 12 | [assembly: AssemblyProduct("SampleAutotaskAPI")] 13 | [assembly: AssemblyCopyright("Copyright © Microsoft 2015")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("a0925e72-5645-4cff-9871-7fdf8929a89d")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /API Documentation Samples/C# Example/SampleAutotaskAPI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace SampleAutotaskAPI.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | 26 | [global::System.Configuration.ApplicationScopedSettingAttribute()] 27 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 28 | [global::System.Configuration.SpecialSettingAttribute(global::System.Configuration.SpecialSetting.WebServiceUrl)] 29 | [global::System.Configuration.DefaultSettingValueAttribute("https://webservices.autotask.net/ATServices/1.6/atws.asmx")] 30 | public string SampleAutotaskAPI_Autotask_Net_webservices_ATWS { 31 | get { 32 | return ((string)(this["SampleAutotaskAPI_Autotask_Net_webservices_ATWS"])); 33 | } 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /API Documentation Samples/C# Example/SampleAutotaskAPI/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | https://webservices.autotask.net/ATServices/1.6/atws.asmx 7 | 8 | 9 | -------------------------------------------------------------------------------- /API Documentation Samples/C# Example/SampleAutotaskAPI/Web References/Autotask.Net.Webservices/ATWSResponse1.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | SampleAutotaskAPI.Autotask.Net.Webservices.ATWSResponse 10 | -------------------------------------------------------------------------------- /API Documentation Samples/C# Example/SampleAutotaskAPI/Web References/Autotask.Net.Webservices/ATWSZoneInfo1.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | SampleAutotaskAPI.Autotask.Net.Webservices.ATWSZoneInfo 10 | -------------------------------------------------------------------------------- /API Documentation Samples/C# Example/SampleAutotaskAPI/Web References/Autotask.Net.Webservices/Attachment1.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | SampleAutotaskAPI.Autotask.Net.Webservices.Attachment 10 | -------------------------------------------------------------------------------- /API Documentation Samples/C# Example/SampleAutotaskAPI/Web References/Autotask.Net.Webservices/EntityInfo1.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | SampleAutotaskAPI.Autotask.Net.Webservices.EntityInfo 10 | -------------------------------------------------------------------------------- /API Documentation Samples/C# Example/SampleAutotaskAPI/Web References/Autotask.Net.Webservices/Field1.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | SampleAutotaskAPI.Autotask.Net.Webservices.Field 10 | -------------------------------------------------------------------------------- /API Documentation Samples/C# Example/SampleAutotaskAPI/Web References/Autotask.Net.Webservices/Reference.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /API Documentation Samples/C# Example/SampleAutotaskAPI/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | https://webservices.autotask.net/ATServices/1.6/atws.asmx 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /API Documentation Samples/README.txt: -------------------------------------------------------------------------------- 1 | Before you begin: 2 | 3 | For both C# and Visual Basic solutions, open the app.config file and replace API USERNAME and API PASSWORD with your own Autotask login credentials. 4 | 5 | NOTE: The Web Services API respects all security level settings assigned to your Autotask username. 6 | 7 | 8 | To use the sample solutions: 9 | 10 | In the code samples found in the C# program.cs file or the Visual Basic Module1.vb file, replace the upper case placeholder values with the actual values. For example: 11 | 12 | In the lines 13 | 14 | 15 | ' Search for a resource given a username 16 | Dim resourceID As Long = test.FindResource("RESOURCE USER NAME") 17 | 18 | 19 | Replace RESOURCE USER NAME with the actual Autotask user name of the resource you are searching for. 20 | -------------------------------------------------------------------------------- /API Documentation Samples/VB Example/SampleAutotaskAPIVB.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2012 4 | Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "SampleAutotaskAPIVB", "SampleAutotaskAPIVB\SampleAutotaskAPIVB.vbproj", "{1AA020CD-FAC8-4CA2-9B8D-73351B53EEA2}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {1AA020CD-FAC8-4CA2-9B8D-73351B53EEA2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {1AA020CD-FAC8-4CA2-9B8D-73351B53EEA2}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {1AA020CD-FAC8-4CA2-9B8D-73351B53EEA2}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {1AA020CD-FAC8-4CA2-9B8D-73351B53EEA2}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /API Documentation Samples/VB Example/SampleAutotaskAPIVB/Module1.vb: -------------------------------------------------------------------------------- 1 | Imports System.Configuration 2 | Imports SampleAutotaskAPIVB.Autotask.Net.Webservices 3 | 4 | Module Module1 5 | 6 | Sub Main() 7 | 8 | Try 9 | Dim test As New AutotaskAPITests(ConfigurationManager.AppSettings("APIUsername"), ConfigurationManager.AppSettings("APIPassword")) 10 | 11 | ' Search for a resource given a username 12 | Dim resourceId As Long = test.FindResource("RESOURCE USER NAME") 13 | 14 | ' Search for a Contact given an email address 15 | Dim contact As Contact = test.FindContact("CONTACT EMAIL ADDRESS") 16 | 17 | ' Update Contact UDF 18 | contact = test.UpdateContactUDF(contact, "UDF NAME", "UDF VALUE") 19 | 20 | ' Update Contact Picklist UDF 21 | contact = test.UpdateContactUDFPicklist(contact, "UDF NAME", "UDF PICKLIST LABEL") 22 | 23 | ' Create NEW Contact with UDF 24 | Dim newContact As Contact = test.CreateContact(Convert.ToInt64(contact.AccountID), "FIRST NAME", "LAST NAME", "EMAIL", "UDF NAME", "UDF VALUE") 25 | 26 | Catch ex As Exception 27 | Throw New Exception("Error: " & ex.Message) 28 | End Try 29 | 30 | End Sub 31 | 32 | End Module 33 | -------------------------------------------------------------------------------- /API Documentation Samples/VB Example/SampleAutotaskAPIVB/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /API Documentation Samples/VB Example/SampleAutotaskAPIVB/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 2 9 | true 10 | 11 | -------------------------------------------------------------------------------- /API Documentation Samples/VB Example/SampleAutotaskAPIVB/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | Imports System.Reflection 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | ' Review the values of the assembly attributes 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 'The following GUID is for the ID of the typelib if this project is exposed to COM 21 | 22 | 23 | ' Version information for an assembly consists of the following four values: 24 | ' 25 | ' Major Version 26 | ' Minor Version 27 | ' Build Number 28 | ' Revision 29 | ' 30 | ' You can specify all the values or you can default the Build and Revision Numbers 31 | ' by using the '*' as shown below: 32 | ' 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /API Documentation Samples/VB Example/SampleAutotaskAPIVB/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | Imports System 15 | 16 | Namespace My.Resources 17 | 18 | 'This class was auto-generated by the StronglyTypedResourceBuilder 19 | 'class via a tool like ResGen or Visual Studio. 20 | 'To add or remove a member, edit your .ResX file then rerun ResGen 21 | 'with the /str option, or rebuild your VS project. 22 | ''' 23 | ''' A strongly-typed resource class, for looking up localized strings, etc. 24 | ''' 25 | _ 29 | Friend Module Resources 30 | 31 | Private resourceMan As Global.System.Resources.ResourceManager 32 | 33 | Private resourceCulture As Global.System.Globalization.CultureInfo 34 | 35 | ''' 36 | ''' Returns the cached ResourceManager instance used by this class. 37 | ''' 38 | _ 39 | Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager 40 | Get 41 | If Object.ReferenceEquals(resourceMan, Nothing) Then 42 | Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("SampleAutotaskAPIVB.Resources", GetType(Resources).Assembly) 43 | resourceMan = temp 44 | End If 45 | Return resourceMan 46 | End Get 47 | End Property 48 | 49 | ''' 50 | ''' Overrides the current thread's CurrentUICulture property for all 51 | ''' resource lookups using this strongly typed resource class. 52 | ''' 53 | _ 54 | Friend Property Culture() As Global.System.Globalization.CultureInfo 55 | Get 56 | Return resourceCulture 57 | End Get 58 | Set 59 | resourceCulture = value 60 | End Set 61 | End Property 62 | End Module 63 | End Namespace 64 | -------------------------------------------------------------------------------- /API Documentation Samples/VB Example/SampleAutotaskAPIVB/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | https://webservices.autotask.net/ATServices/1.5/atws.asmx 7 | 8 | 9 | -------------------------------------------------------------------------------- /API Documentation Samples/VB Example/SampleAutotaskAPIVB/Web References/Autotask.Net.Webservices/ATWSResponse.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | SampleAutotaskAPIVB.Autotask.Net.Webservices.ATWSResponse, Web References.Autotask.Net.Webservices.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /API Documentation Samples/VB Example/SampleAutotaskAPIVB/Web References/Autotask.Net.Webservices/ATWSZoneInfo.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | SampleAutotaskAPIVB.Autotask.Net.Webservices.ATWSZoneInfo, Web References.Autotask.Net.Webservices.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /API Documentation Samples/VB Example/SampleAutotaskAPIVB/Web References/Autotask.Net.Webservices/Attachment.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | SampleAutotaskAPIVB.Autotask.Net.Webservices.Attachment, Web References.Autotask.Net.Webservices.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /API Documentation Samples/VB Example/SampleAutotaskAPIVB/Web References/Autotask.Net.Webservices/EntityInfo.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | SampleAutotaskAPIVB.Autotask.Net.Webservices.EntityInfo, Web References.Autotask.Net.Webservices.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /API Documentation Samples/VB Example/SampleAutotaskAPIVB/Web References/Autotask.Net.Webservices/Field.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | SampleAutotaskAPIVB.Autotask.Net.Webservices.Field, Web References.Autotask.Net.Webservices.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /API Documentation Samples/VB Example/SampleAutotaskAPIVB/Web References/Autotask.Net.Webservices/Reference.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /API Documentation Samples/VB Example/SampleAutotaskAPIVB/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | https://webservices.autotask.net/ATServices/1.5/atws.asmx 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /Connection Examples/NodeJs Example.js: -------------------------------------------------------------------------------- 1 | // Replace 'USERNAME' and 'PASSWORD' with your Autotask resource credentails and replace [ZONE] with 2 | // the database zone you are in. example: webservices3.autotask.net 3 | // See the API documentation for information about which zone you are in. 4 | var https = require("https"); 5 | var xml = 6 | '' + 7 | "' + 11 | "" + 12 | '' + // To use version 1.6 change to http://autotask.net/ATWS/v1_6/ 13 | "" + 14 | "" + 15 | "" + 16 | // For Version 1.6 insert Tracking Identifer here 17 | "" + 18 | "" + 19 | // For version 1.6 only insert id of a resource you want to impersonate 20 | "" + 21 | "" + 22 | "" + 23 | "" + 24 | "" + // To use version 1.6 change to http://autotask.net/ATWS/v1_6/ 25 | "" + 26 | ""; 27 | var username = "USERNAME"; 28 | var password = "PASSWORD"; 29 | 30 | var options = { 31 | host: "webservices[ZONE].autotask.net", 32 | port: 443, 33 | method: "POST", 34 | path: "/atservices/1.5/atws.asmx", // To use version 1.6 change to /atservices/1.6/atws.asmx 35 | // authentication headers 36 | headers: { 37 | 'Content-Type': "text/xml; charset=utf-8", 38 | 'Content-Length': Buffer.byteLength(xml), 39 | 'Authorization': "Basic " + new Buffer(username + ":" + password).toString("base64"), 40 | 'SOAPAction': "http://autotask.net/ATWS/v1_5/getThresholdAndUsageInfo", // To use version 1.6 change to http://autotask.net/ATWS/v1_6/getThresholdAndUsageInfo 41 | 'Accept': "application/json" 42 | } 43 | }; 44 | //The call 45 | request = https.request(options, function (res) { 46 | console.log("statusCode:", res.statusCode); 47 | 48 | res.on("data", (d) => { 49 | process.stdout.write(d); 50 | }); 51 | }); 52 | 53 | request.on("error", (e) => { 54 | console.error(e); 55 | }); 56 | request.end(xml); 57 | -------------------------------------------------------------------------------- /Connection Examples/PowerShell Example.ps1: -------------------------------------------------------------------------------- 1 | # Username and password for Autotask 2 | $ATurl = "https://webservices.autotask.net/ATServices/1.5/atws.wsdl" # To use Version 1.6 change to "https://webservices.autotask.net/ATServices/1.6/atws.wsdl" 3 | $ATusername = "USERNAME" 4 | $ATpassword = ConvertTo-SecureString "PASSWORD" -AsPlainText -Force 5 | $ATcredentials = New-Object System.Management.Automation.PSCredential($ATusername,$ATpassword) 6 | 7 | [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 8 | $atws = New-WebServiceProxy -URI $ATUrl -Credential $ATcredentials 9 | $zoneInfo = $atws.getZoneInfo($ATusername) 10 | $ATurl = $zoneInfo.URL.Replace(".asmx",".wsdl") 11 | $atws = New-WebServiceProxy -URI $ATurl -Credential $ATcredentials -Namespace ‘Autotask’ -Class ‘API’ 12 | # Uncomment the following lines for version 1.6 13 | #$integrationsValue = New-Object -TypeName Autotask.AutotaskIntegrations 14 | #$integrationsValue.IntegrationCode = "[Insert Tracking Identifier Here]" 15 | #$atws.AutotaskIntegrationsValue = $integrationsValue 16 | $ATnamespace = $atws.GetType().Namespace 17 | 18 | $Result = $atws.getThresholdAndUsageInfo() 19 | Write-Host $Result.EntityReturnInfoResults[0].Message -------------------------------------------------------------------------------- /Connection Examples/Python Example.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | # Replace 'USERNAME', 'PASSWORD', and 'TRACKING_IDENTIFIER' with your 4 | # Autotask resource credentials and replace [ZONE] with your instance's zone. 5 | # For example: webservices3.autotask.net 6 | # See the API documentation for information about which zone you are in. 7 | 8 | import requests 9 | from requests.auth import HTTPBasicAuth 10 | from zeep import Client 11 | from zeep.transports import Transport 12 | 13 | USERNAME = "USERNAME" 14 | PASSWORD = "PASSWORD" 15 | TRACKING_IDENTIFIER = "TRACKING_IDENTIFIER" 16 | 17 | # to use version 1.6 update to 18 | # https://webservices[ZONE].autotask.net/atservices/1.6/atws.wsdl 19 | WSDL_URL = "https://webservices[ZONE].autotask.net/atservices/1.5/atws.wsdl" 20 | 21 | api_session = requests.Session() 22 | api_session.auth = HTTPBasicAuth(USERNAME, PASSWORD) 23 | 24 | api_client = Client( 25 | WSDL_URL, 26 | transport=Transport( 27 | session=api_session)) 28 | 29 | # Create tracking header that will be re-used across requests 30 | # Version 1.6 requires a value for the IntegrationCode tag. 31 | integrations_header = {'AutotaskIntegrations': { 32 | 'IntegrationCode': TRACKING_IDENTIFIER, 33 | 'PartnerID': None, 34 | 'ImpersonateAsResourceID': None}} 35 | api_client.set_default_soapheaders(integrations_header) 36 | 37 | # API endpoints will now be exposed as functions under api_client.service 38 | # They can be listed with dir(api_client.service) 39 | 40 | usage_info = api_client.service.getThresholdAndUsageInfo() 41 | print(usage_info) 42 | -------------------------------------------------------------------------------- /Emoticon Survey Example/Basic Emoticon Sample Notification Template HTML.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 |
5 |

Ticket Notifcation

6 |

Ticket Number: [Ticket: Number]

7 |

Title: [Ticket: Title]

8 |
12 | 13 | 14 | 15 | 16 | 20 | 21 | 22 | 23 | 28 | 29 | 30 | 31 | 35 | 36 | 37 |
17 |

[Ticket Time Entry: Summary Notes]

18 |
19 |
24 | 25 | 26 | 27 |
32 |

How are we doing?

33 |
34 |
-------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.26730.12 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EmoticonWebProject", "EmoticonWebProject\EmoticonWebProject.csproj", "{B60E5B3A-12B3-4A88-AE6C-E340CD2859A2}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {B60E5B3A-12B3-4A88-AE6C-E340CD2859A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {B60E5B3A-12B3-4A88-AE6C-E340CD2859A2}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {B60E5B3A-12B3-4A88-AE6C-E340CD2859A2}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {B60E5B3A-12B3-4A88-AE6C-E340CD2859A2}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {D80B0F1D-48F6-40D2-853B-A2C1E764808A} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/Default.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="EmoticonWebProject.Default" %> 2 | 3 | 4 | 5 | 6 | 7 | Emoticon Sample Project 8 | 9 | 10 | 11 | 12 |
13 |
14 |

Thank you for your feedback!

15 |

If you have additional feedback please reach out to us at test@test.com.

16 |
17 |
18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/Default.aspx.designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace EmoticonWebProject { 11 | 12 | 13 | public partial class Default { 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("EmoticonWebProject")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("EmoticonWebProject")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("b60e5b3a-12b3-4a88-ae6c-e340cd2859a2")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Revision and Build Numbers 33 | // by using the '*' as shown below: 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/Properties/PublishProfiles/Emoticon - Web Deploy.pubxml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | MSDeploy 9 | /subscriptions/6c2240d1-9ec7-46fc-8e58-47ef246fb97f/resourcegroups/Testing/providers/Microsoft.Web/sites/Emoticon 10 | Testing 11 | AzureWebSite 12 | Release 13 | Any CPU 14 | http://emoticon.azurewebsites.net 15 | True 16 | False 17 | emoticon.scm.azurewebsites.net:443 18 | Emoticon 19 | 20 | True 21 | WMSVC 22 | True 23 | $Emoticon 24 | <_SavePWD>True 25 | <_DestinationType>AzureWebSite 26 | 27 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/Properties/PublishProfiles/Emoticon - Web Deploy.pubxml.user: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAN3ne1Ewi8Ea5UbVq/0B0TwAAAAACAAAAAAADZgAAwAAAABAAAABn1+Mj1qFxG9dRIg/m0iPYAAAAAASAAACgAAAAEAAAAAsZKR7B6BlgxgIiNBHENtiAAAAAv1yFEFpgpnk20r6zBP25qsNaxd0kCAbShOTBYudKSaw3K+GZPzBRxOIxc20YrjDPh4mZ7WsWg+0XpQWyFtW3ts4FcLrLiOkrV1xKaq0vk4lgzXEbALReiiwf3weM580X+E6Ob+8vBskQn6o2gpqVzzKP2j24IRZ4mlmLeo00ifUUAAAAe8JP2Ezvi0gQDm4WT1UaMigFB/Q= 10 | 11 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace EmoticonWebProject.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.3.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | 26 | [global::System.Configuration.ApplicationScopedSettingAttribute()] 27 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 28 | [global::System.Configuration.SpecialSettingAttribute(global::System.Configuration.SpecialSetting.WebServiceUrl)] 29 | [global::System.Configuration.DefaultSettingValueAttribute("https://webservices.autotask.net/ATServices/1.5/atws.asmx")] 30 | public string EmoticonWebProject_Autotask_ATWS { 31 | get { 32 | return ((string)(this["EmoticonWebProject_Autotask_ATWS"])); 33 | } 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | https://webservices.autotask.net/ATServices/1.5/atws.asmx 7 | 8 | 9 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/Web References/Autotask/ATWSResponse.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | EmoticonWebProject.Autotask.ATWSResponse, Web References.Autotask.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/Web References/Autotask/ATWSZoneInfo.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | EmoticonWebProject.Autotask.ATWSZoneInfo, Web References.Autotask.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/Web References/Autotask/Attachment.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | EmoticonWebProject.Autotask.Attachment, Web References.Autotask.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/Web References/Autotask/EntityInfo.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | EmoticonWebProject.Autotask.EntityInfo, Web References.Autotask.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/Web References/Autotask/Field.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | EmoticonWebProject.Autotask.Field, Web References.Autotask.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/Web References/Autotask/Reference.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/Web.Debug.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 29 | 30 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/Web.Release.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 19 | 30 | 31 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/Web.config: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 10 |
12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | https://webservices.autotask.net/ATServices/1.5/atws.asmx 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/EmoticonWebProject/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/Microsoft.Net.Compilers.2.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/Microsoft.Net.Compilers.2.3.2.nupkg -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/build/Microsoft.Net.Compilers.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 11 | 12 | 13 | 18 | 19 | 20 | 22 | 24 | 26 | 28 | 29 | 30 | false 31 | $(MSBuildThisFileDirectory)..\tools\Microsoft.CSharp.Core.targets 32 | $(MSBuildThisFileDirectory)..\tools\Microsoft.VisualBasic.Core.targets 33 | 34 | 35 | 37 | 38 | $(MSBuildThisFileDirectory)..\tools 39 | csc.exe 40 | $(MSBuildThisFileDirectory)..\tools 41 | vbc.exe 42 | 43 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.Build.Tasks.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.Build.Tasks.CodeAnalysis.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.DiaSymReader.Native.amd64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.DiaSymReader.Native.amd64.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.DiaSymReader.Native.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.DiaSymReader.Native.x86.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.AppContext.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Console.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Diagnostics.Process.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Diagnostics.Process.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.Compression.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.FileSystem.DriveInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.FileSystem.DriveInfo.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.Pipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.Pipes.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Claims.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Claims.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Threading.Thread.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Threading.Thread.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.ValueTuple.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Xml.XPath.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/VBCSCompiler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/VBCSCompiler.exe -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/csc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/csc.exe -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/csc.rsp: -------------------------------------------------------------------------------- 1 | # Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. 2 | 3 | # This file contains command-line options that the C# 4 | # command line compiler (CSC) will process as part 5 | # of every compilation, unless the "/noconfig" option 6 | # is specified. 7 | 8 | # Reference the common Framework libraries 9 | /r:Accessibility.dll 10 | /r:Microsoft.CSharp.dll 11 | /r:System.Configuration.dll 12 | /r:System.Configuration.Install.dll 13 | /r:System.Core.dll 14 | /r:System.Data.dll 15 | /r:System.Data.DataSetExtensions.dll 16 | /r:System.Data.Linq.dll 17 | /r:System.Data.OracleClient.dll 18 | /r:System.Deployment.dll 19 | /r:System.Design.dll 20 | /r:System.DirectoryServices.dll 21 | /r:System.dll 22 | /r:System.Drawing.Design.dll 23 | /r:System.Drawing.dll 24 | /r:System.EnterpriseServices.dll 25 | /r:System.Management.dll 26 | /r:System.Messaging.dll 27 | /r:System.Runtime.Remoting.dll 28 | /r:System.Runtime.Serialization.dll 29 | /r:System.Runtime.Serialization.Formatters.Soap.dll 30 | /r:System.Security.dll 31 | /r:System.ServiceModel.dll 32 | /r:System.ServiceModel.Web.dll 33 | /r:System.ServiceProcess.dll 34 | /r:System.Transactions.dll 35 | /r:System.Web.dll 36 | /r:System.Web.Extensions.Design.dll 37 | /r:System.Web.Extensions.dll 38 | /r:System.Web.Mobile.dll 39 | /r:System.Web.RegularExpressions.dll 40 | /r:System.Web.Services.dll 41 | /r:System.Windows.Forms.dll 42 | /r:System.Workflow.Activities.dll 43 | /r:System.Workflow.ComponentModel.dll 44 | /r:System.Workflow.Runtime.dll 45 | /r:System.Xml.dll 46 | /r:System.Xml.Linq.dll 47 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/csi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/csi.exe -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/csi.rsp: -------------------------------------------------------------------------------- 1 | /r:System 2 | /r:System.Core 3 | /r:Microsoft.CSharp 4 | /r:System.ValueTuple.dll 5 | /u:System 6 | /u:System.IO 7 | /u:System.Collections.Generic 8 | /u:System.Console 9 | /u:System.Diagnostics 10 | /u:System.Dynamic 11 | /u:System.Linq 12 | /u:System.Linq.Expressions 13 | /u:System.Text 14 | /u:System.Threading.Tasks -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/vbc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/vbc.exe -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/Microsoft.Net.Compilers.2.3.2/tools/vbc.rsp: -------------------------------------------------------------------------------- 1 | # Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. 2 | 3 | # This file contains command-line options that the VB 4 | # command line compiler (VBC) will process as part 5 | # of every compilation, unless the "/noconfig" option 6 | # is specified. 7 | 8 | # Reference the common Framework libraries 9 | /r:Accessibility.dll 10 | /r:System.Configuration.dll 11 | /r:System.Configuration.Install.dll 12 | /r:System.Data.dll 13 | /r:System.Data.OracleClient.dll 14 | /r:System.Deployment.dll 15 | /r:System.Design.dll 16 | /r:System.DirectoryServices.dll 17 | /r:System.dll 18 | /r:System.Drawing.Design.dll 19 | /r:System.Drawing.dll 20 | /r:System.EnterpriseServices.dll 21 | /r:System.Management.dll 22 | /r:System.Messaging.dll 23 | /r:System.Runtime.Remoting.dll 24 | /r:System.Runtime.Serialization.Formatters.Soap.dll 25 | /r:System.Security.dll 26 | /r:System.ServiceProcess.dll 27 | /r:System.Transactions.dll 28 | /r:System.Web.dll 29 | /r:System.Web.Mobile.dll 30 | /r:System.Web.RegularExpressions.dll 31 | /r:System.Web.Services.dll 32 | /r:System.Windows.Forms.dll 33 | /r:System.XML.dll 34 | 35 | /r:System.Workflow.Activities.dll 36 | /r:System.Workflow.ComponentModel.dll 37 | /r:System.Workflow.Runtime.dll 38 | /r:System.Runtime.Serialization.dll 39 | /r:System.ServiceModel.dll 40 | 41 | /r:System.Core.dll 42 | /r:System.Xml.Linq.dll 43 | /r:System.Data.Linq.dll 44 | /r:System.Data.DataSetExtensions.dll 45 | /r:System.Web.Extensions.dll 46 | /r:System.Web.Extensions.Design.dll 47 | /r:System.ServiceModel.Web.dll 48 | 49 | # Import System and Microsoft.VisualBasic 50 | /imports:System 51 | /imports:Microsoft.VisualBasic 52 | /imports:System.Linq 53 | /imports:System.Xml.Linq 54 | 55 | /optioninfer+ 56 | -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/bootstrap.3.3.7/bootstrap.3.3.7.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/bootstrap.3.3.7/bootstrap.3.3.7.nupkg -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/jQuery.3.1.1/Tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | # VS 11 and above supports the new intellisense JS files 6 | $vsVersion = [System.Version]::Parse($dte.Version) 7 | $supportsJsIntelliSenseFile = $vsVersion.Major -ge 11 8 | 9 | if (-not $supportsJsIntelliSenseFile) { 10 | $displayVersion = $vsVersion.Major 11 | Write-Host "IntelliSense JS files are not supported by your version of Visual Studio: $displayVersion" 12 | exit 13 | } 14 | 15 | if ($scriptsFolderProjectItem -eq $null) { 16 | # No Scripts folder 17 | Write-Host "No Scripts folder found" 18 | exit 19 | } 20 | 21 | # Delete the vsdoc file from the project 22 | try { 23 | $vsDocProjectItem = $scriptsFolderProjectItem.ProjectItems.Item("jquery-$ver-vsdoc.js") 24 | Delete-ProjectItem $vsDocProjectItem 25 | } 26 | catch { 27 | Write-Host "Error deleting vsdoc file: " + $_.Exception -ForegroundColor Red 28 | exit 29 | } 30 | 31 | # Copy the intellisense file to the project from the tools folder 32 | $intelliSenseFileSourcePath = Join-Path $toolsPath $intelliSenseFileName 33 | try { 34 | $scriptsFolderProjectItem.ProjectItems.AddFromFileCopy($intelliSenseFileSourcePath) 35 | } 36 | catch { 37 | # This will throw if the file already exists, so we need to catch here 38 | } 39 | 40 | # Update the _references.js file 41 | AddOrUpdate-Reference $scriptsFolderProjectItem $jqueryFileNameRegEx $jqueryFileName -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/jQuery.3.1.1/Tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | # Determine the file paths 6 | $projectIntelliSenseFilePath = Join-Path $projectScriptsFolderPath $intelliSenseFileName 7 | $origIntelliSenseFilePath = Join-Path $toolsPath $intelliSenseFileName 8 | 9 | if (Test-Path $projectIntelliSenseFilePath) { 10 | if ((Get-Checksum $projectIntelliSenseFilePath) -eq (Get-Checksum $origIntelliSenseFilePath)) { 11 | # The intellisense file in the project matches the file in the tools folder, delete it 12 | 13 | if ($scriptsFolderProjectItem -eq $null) { 14 | # No Scripts folder 15 | exit 16 | } 17 | 18 | try { 19 | # Get the project item for the intellisense file 20 | $intelliSenseFileProjectItem = $scriptsFolderProjectItem.ProjectItems.Item($intelliSenseFileName) 21 | } 22 | catch { 23 | # The item wasn't found 24 | exit 25 | } 26 | 27 | # Delete the project item 28 | Delete-ProjectItem $intelliSenseFileProjectItem 29 | } 30 | else { 31 | $projectScriptsFolderLeaf = Split-Path $projectScriptsFolderPath -Leaf 32 | Write-Host "Skipping '$projectScriptsFolderLeaf\$intelliSenseFileName' because it was modified." -ForegroundColor Magenta 33 | } 34 | } 35 | else { 36 | # The intellisense file was not found in project 37 | Write-Host "The intellisense file was not found in project at path $projectIntelliSenseFilePath" 38 | } 39 | 40 | # Update the _references.js file 41 | Remove-Reference $scriptsFolderProjectItem $jqueryFileNameRegEx -------------------------------------------------------------------------------- /Emoticon Survey Example/EmoticonWebProject/packages/jQuery.3.1.1/jQuery.3.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Emoticon Survey Example/EmoticonWebProject/packages/jQuery.3.1.1/jQuery.3.1.1.nupkg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Autotask 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Please see the Autotask PSA Web Services On-line help for the the SOAP End of Life timeline at: 2 | https://ww2.autotask.net/help/DeveloperHelp/Content/AdminSetup/2ExtensionsIntegrations/APIs/SOAP/General_Topics/SOAP_Lifecycle.htm 3 | 4 | Please see the Autotask PSA Web Services On-line help for the the SOAP revision history at: 5 | https://ww2.autotask.net/help/DeveloperHelp/Content/AdminSetup/2ExtensionsIntegrations/APIs/SOAP/General_Topics/SOAP_API_Revision_History.htm 6 | 7 | Please see the general Autotask PSA Web Services On-line help at: 8 | https://ww2.autotask.net/help/DeveloperHelp/Content/AdminSetup/2ExtensionsIntegrations/APIs/SOAP/SOAPHome.htm 9 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.26730.12 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Upload Attachment Example", "Upload Attachment Example\Upload Attachment Example.csproj", "{D3073106-B647-4617-9674-BBDEF87D019F}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {D3073106-B647-4617-9674-BBDEF87D019F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {D3073106-B647-4617-9674-BBDEF87D019F}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {D3073106-B647-4617-9674-BBDEF87D019F}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {D3073106-B647-4617-9674-BBDEF87D019F}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {F7AFB05E-7619-4B1B-8DF6-03B4475EA4BD} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/accordion.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Accordion 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/accordion/#theming 10 | */ 11 | .ui-accordion .ui-accordion-header { 12 | display: block; 13 | cursor: pointer; 14 | position: relative; 15 | margin: 2px 0 0 0; 16 | padding: .5em .5em .5em .7em; 17 | min-height: 0; /* support: IE7 */ 18 | font-size: 100%; 19 | } 20 | .ui-accordion .ui-accordion-icons { 21 | padding-left: 2.2em; 22 | } 23 | .ui-accordion .ui-accordion-icons .ui-accordion-icons { 24 | padding-left: 2.2em; 25 | } 26 | .ui-accordion .ui-accordion-header .ui-accordion-header-icon { 27 | position: absolute; 28 | left: .5em; 29 | top: 50%; 30 | margin-top: -8px; 31 | } 32 | .ui-accordion .ui-accordion-content { 33 | padding: 1em 2.2em; 34 | border-top: 0; 35 | overflow: auto; 36 | } 37 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/category/theming/ 10 | */ 11 | @import "base.css"; 12 | @import "theme.css"; 13 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/autocomplete/#theming 10 | */ 11 | .ui-autocomplete { 12 | position: absolute; 13 | top: 0; 14 | left: 0; 15 | cursor: default; 16 | } 17 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/category/theming/ 10 | */ 11 | @import url("core.css"); 12 | 13 | @import url("accordion.css"); 14 | @import url("autocomplete.css"); 15 | @import url("button.css"); 16 | @import url("datepicker.css"); 17 | @import url("dialog.css"); 18 | @import url("draggable.css"); 19 | @import url("menu.css"); 20 | @import url("progressbar.css"); 21 | @import url("resizable.css"); 22 | @import url("selectable.css"); 23 | @import url("selectmenu.css"); 24 | @import url("sortable.css"); 25 | @import url("slider.css"); 26 | @import url("spinner.css"); 27 | @import url("tabs.css"); 28 | @import url("tooltip.css"); 29 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/core.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/category/theming/ 10 | */ 11 | 12 | /* Layout helpers 13 | ----------------------------------*/ 14 | .ui-helper-hidden { 15 | display: none; 16 | } 17 | .ui-helper-hidden-accessible { 18 | border: 0; 19 | clip: rect(0 0 0 0); 20 | height: 1px; 21 | margin: -1px; 22 | overflow: hidden; 23 | padding: 0; 24 | position: absolute; 25 | width: 1px; 26 | } 27 | .ui-helper-reset { 28 | margin: 0; 29 | padding: 0; 30 | border: 0; 31 | outline: 0; 32 | line-height: 1.3; 33 | text-decoration: none; 34 | font-size: 100%; 35 | list-style: none; 36 | } 37 | .ui-helper-clearfix:before, 38 | .ui-helper-clearfix:after { 39 | content: ""; 40 | display: table; 41 | border-collapse: collapse; 42 | } 43 | .ui-helper-clearfix:after { 44 | clear: both; 45 | } 46 | .ui-helper-clearfix { 47 | min-height: 0; /* support: IE7 */ 48 | } 49 | .ui-helper-zfix { 50 | width: 100%; 51 | height: 100%; 52 | top: 0; 53 | left: 0; 54 | position: absolute; 55 | opacity: 0; 56 | filter:Alpha(Opacity=0); /* support: IE8 */ 57 | } 58 | 59 | .ui-front { 60 | z-index: 100; 61 | } 62 | 63 | 64 | /* Interaction Cues 65 | ----------------------------------*/ 66 | .ui-state-disabled { 67 | cursor: default !important; 68 | } 69 | 70 | 71 | /* Icons 72 | ----------------------------------*/ 73 | 74 | /* states and images */ 75 | .ui-icon { 76 | display: block; 77 | text-indent: -99999px; 78 | overflow: hidden; 79 | background-repeat: no-repeat; 80 | } 81 | 82 | 83 | /* Misc visuals 84 | ----------------------------------*/ 85 | 86 | /* Overlays */ 87 | .ui-widget-overlay { 88 | position: fixed; 89 | top: 0; 90 | left: 0; 91 | width: 100%; 92 | height: 100%; 93 | } 94 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/dialog.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Dialog 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/dialog/#theming 10 | */ 11 | .ui-dialog { 12 | overflow: hidden; 13 | position: absolute; 14 | top: 0; 15 | left: 0; 16 | padding: .2em; 17 | outline: 0; 18 | } 19 | .ui-dialog .ui-dialog-titlebar { 20 | padding: .4em 1em; 21 | position: relative; 22 | } 23 | .ui-dialog .ui-dialog-title { 24 | float: left; 25 | margin: .1em 0; 26 | white-space: nowrap; 27 | width: 90%; 28 | overflow: hidden; 29 | text-overflow: ellipsis; 30 | } 31 | .ui-dialog .ui-dialog-titlebar-close { 32 | position: absolute; 33 | right: .3em; 34 | top: 50%; 35 | width: 20px; 36 | margin: -10px 0 0 0; 37 | padding: 1px; 38 | height: 20px; 39 | } 40 | .ui-dialog .ui-dialog-content { 41 | position: relative; 42 | border: 0; 43 | padding: .5em 1em; 44 | background: none; 45 | overflow: auto; 46 | } 47 | .ui-dialog .ui-dialog-buttonpane { 48 | text-align: left; 49 | border-width: 1px 0 0 0; 50 | background-image: none; 51 | margin-top: .5em; 52 | padding: .3em 1em .5em .4em; 53 | } 54 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { 55 | float: right; 56 | } 57 | .ui-dialog .ui-dialog-buttonpane button { 58 | margin: .5em .4em .5em 0; 59 | cursor: pointer; 60 | } 61 | .ui-dialog .ui-resizable-se { 62 | width: 12px; 63 | height: 12px; 64 | right: -5px; 65 | bottom: -5px; 66 | background-position: 16px 16px; 67 | } 68 | .ui-draggable .ui-dialog-titlebar { 69 | cursor: move; 70 | } 71 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/draggable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Draggable 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-draggable-handle { 10 | -ms-touch-action: none; 11 | touch-action: none; 12 | } 13 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/Content/themes/base/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/menu.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Menu 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/menu/#theming 10 | */ 11 | .ui-menu { 12 | list-style: none; 13 | padding: 0; 14 | margin: 0; 15 | display: block; 16 | outline: none; 17 | } 18 | .ui-menu .ui-menu { 19 | position: absolute; 20 | } 21 | .ui-menu .ui-menu-item { 22 | position: relative; 23 | margin: 0; 24 | padding: 3px 1em 3px .4em; 25 | cursor: pointer; 26 | min-height: 0; /* support: IE7 */ 27 | /* support: IE10, see #8844 */ 28 | list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); 29 | } 30 | .ui-menu .ui-menu-divider { 31 | margin: 5px 0; 32 | height: 0; 33 | font-size: 0; 34 | line-height: 0; 35 | border-width: 1px 0 0 0; 36 | } 37 | .ui-menu .ui-state-focus, 38 | .ui-menu .ui-state-active { 39 | margin: -1px; 40 | } 41 | 42 | /* icon support */ 43 | .ui-menu-icons { 44 | position: relative; 45 | } 46 | .ui-menu-icons .ui-menu-item { 47 | padding-left: 2em; 48 | } 49 | 50 | /* left-aligned */ 51 | .ui-menu .ui-icon { 52 | position: absolute; 53 | top: 0; 54 | bottom: 0; 55 | left: .2em; 56 | margin: auto 0; 57 | } 58 | 59 | /* right-aligned */ 60 | .ui-menu .ui-menu-icon { 61 | left: auto; 62 | right: 0; 63 | } 64 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/progressbar/#theming 10 | */ 11 | .ui-progressbar { 12 | height: 2em; 13 | text-align: left; 14 | overflow: hidden; 15 | } 16 | .ui-progressbar .ui-progressbar-value { 17 | margin: -1px; 18 | height: 100%; 19 | } 20 | .ui-progressbar .ui-progressbar-overlay { 21 | background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw=="); 22 | height: 100%; 23 | filter: alpha(opacity=25); /* support: IE8 */ 24 | opacity: 0.25; 25 | } 26 | .ui-progressbar-indeterminate .ui-progressbar-value { 27 | background-image: none; 28 | } 29 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/resizable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Resizable 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-resizable { 10 | position: relative; 11 | } 12 | .ui-resizable-handle { 13 | position: absolute; 14 | font-size: 0.1px; 15 | display: block; 16 | -ms-touch-action: none; 17 | touch-action: none; 18 | } 19 | .ui-resizable-disabled .ui-resizable-handle, 20 | .ui-resizable-autohide .ui-resizable-handle { 21 | display: none; 22 | } 23 | .ui-resizable-n { 24 | cursor: n-resize; 25 | height: 7px; 26 | width: 100%; 27 | top: -5px; 28 | left: 0; 29 | } 30 | .ui-resizable-s { 31 | cursor: s-resize; 32 | height: 7px; 33 | width: 100%; 34 | bottom: -5px; 35 | left: 0; 36 | } 37 | .ui-resizable-e { 38 | cursor: e-resize; 39 | width: 7px; 40 | right: -5px; 41 | top: 0; 42 | height: 100%; 43 | } 44 | .ui-resizable-w { 45 | cursor: w-resize; 46 | width: 7px; 47 | left: -5px; 48 | top: 0; 49 | height: 100%; 50 | } 51 | .ui-resizable-se { 52 | cursor: se-resize; 53 | width: 12px; 54 | height: 12px; 55 | right: 1px; 56 | bottom: 1px; 57 | } 58 | .ui-resizable-sw { 59 | cursor: sw-resize; 60 | width: 9px; 61 | height: 9px; 62 | left: -5px; 63 | bottom: -5px; 64 | } 65 | .ui-resizable-nw { 66 | cursor: nw-resize; 67 | width: 9px; 68 | height: 9px; 69 | left: -5px; 70 | top: -5px; 71 | } 72 | .ui-resizable-ne { 73 | cursor: ne-resize; 74 | width: 9px; 75 | height: 9px; 76 | right: -5px; 77 | top: -5px; 78 | } 79 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-selectable { 10 | -ms-touch-action: none; 11 | touch-action: none; 12 | } 13 | .ui-selectable-helper { 14 | position: absolute; 15 | z-index: 100; 16 | border: 1px dotted black; 17 | } 18 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/selectmenu.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectmenu 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/selectmenu/#theming 10 | */ 11 | .ui-selectmenu-menu { 12 | padding: 0; 13 | margin: 0; 14 | position: absolute; 15 | top: 0; 16 | left: 0; 17 | display: none; 18 | } 19 | .ui-selectmenu-menu .ui-menu { 20 | overflow: auto; 21 | /* Support: IE7 */ 22 | overflow-x: hidden; 23 | padding-bottom: 1px; 24 | } 25 | .ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup { 26 | font-size: 1em; 27 | font-weight: bold; 28 | line-height: 1.5; 29 | padding: 2px 0.4em; 30 | margin: 0.5em 0 0 0; 31 | height: auto; 32 | border: 0; 33 | } 34 | .ui-selectmenu-open { 35 | display: block; 36 | } 37 | .ui-selectmenu-button { 38 | display: inline-block; 39 | overflow: hidden; 40 | position: relative; 41 | text-decoration: none; 42 | cursor: pointer; 43 | } 44 | .ui-selectmenu-button span.ui-icon { 45 | right: 0.5em; 46 | left: auto; 47 | margin-top: -8px; 48 | position: absolute; 49 | top: 50%; 50 | } 51 | .ui-selectmenu-button span.ui-selectmenu-text { 52 | text-align: left; 53 | padding: 0.4em 2.1em 0.4em 1em; 54 | display: block; 55 | line-height: 1.4; 56 | overflow: hidden; 57 | text-overflow: ellipsis; 58 | white-space: nowrap; 59 | } 60 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/slider.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Slider 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/slider/#theming 10 | */ 11 | .ui-slider { 12 | position: relative; 13 | text-align: left; 14 | } 15 | .ui-slider .ui-slider-handle { 16 | position: absolute; 17 | z-index: 2; 18 | width: 1.2em; 19 | height: 1.2em; 20 | cursor: default; 21 | -ms-touch-action: none; 22 | touch-action: none; 23 | } 24 | .ui-slider .ui-slider-range { 25 | position: absolute; 26 | z-index: 1; 27 | font-size: .7em; 28 | display: block; 29 | border: 0; 30 | background-position: 0 0; 31 | } 32 | 33 | /* support: IE8 - See #6727 */ 34 | .ui-slider.ui-state-disabled .ui-slider-handle, 35 | .ui-slider.ui-state-disabled .ui-slider-range { 36 | filter: inherit; 37 | } 38 | 39 | .ui-slider-horizontal { 40 | height: .8em; 41 | } 42 | .ui-slider-horizontal .ui-slider-handle { 43 | top: -.3em; 44 | margin-left: -.6em; 45 | } 46 | .ui-slider-horizontal .ui-slider-range { 47 | top: 0; 48 | height: 100%; 49 | } 50 | .ui-slider-horizontal .ui-slider-range-min { 51 | left: 0; 52 | } 53 | .ui-slider-horizontal .ui-slider-range-max { 54 | right: 0; 55 | } 56 | 57 | .ui-slider-vertical { 58 | width: .8em; 59 | height: 100px; 60 | } 61 | .ui-slider-vertical .ui-slider-handle { 62 | left: -.3em; 63 | margin-left: 0; 64 | margin-bottom: -.6em; 65 | } 66 | .ui-slider-vertical .ui-slider-range { 67 | left: 0; 68 | width: 100%; 69 | } 70 | .ui-slider-vertical .ui-slider-range-min { 71 | bottom: 0; 72 | } 73 | .ui-slider-vertical .ui-slider-range-max { 74 | top: 0; 75 | } 76 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/sortable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Sortable 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-sortable-handle { 10 | -ms-touch-action: none; 11 | touch-action: none; 12 | } 13 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/spinner.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Spinner 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/spinner/#theming 10 | */ 11 | .ui-spinner { 12 | position: relative; 13 | display: inline-block; 14 | overflow: hidden; 15 | padding: 0; 16 | vertical-align: middle; 17 | } 18 | .ui-spinner-input { 19 | border: none; 20 | background: none; 21 | color: inherit; 22 | padding: 0; 23 | margin: .2em 0; 24 | vertical-align: middle; 25 | margin-left: .4em; 26 | margin-right: 22px; 27 | } 28 | .ui-spinner-button { 29 | width: 16px; 30 | height: 50%; 31 | font-size: .5em; 32 | padding: 0; 33 | margin: 0; 34 | text-align: center; 35 | position: absolute; 36 | cursor: default; 37 | display: block; 38 | overflow: hidden; 39 | right: 0; 40 | } 41 | /* more specificity required here to override default borders */ 42 | .ui-spinner a.ui-spinner-button { 43 | border-top: none; 44 | border-bottom: none; 45 | border-right: none; 46 | } 47 | /* vertically center icon */ 48 | .ui-spinner .ui-icon { 49 | position: absolute; 50 | margin-top: -8px; 51 | top: 50%; 52 | left: 0; 53 | } 54 | .ui-spinner-up { 55 | top: 0; 56 | } 57 | .ui-spinner-down { 58 | bottom: 0; 59 | } 60 | 61 | /* TR overrides */ 62 | .ui-spinner .ui-icon-triangle-1-s { 63 | /* need to fix icons sprite */ 64 | background-position: -65px -16px; 65 | } 66 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/tabs.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tabs 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/tabs/#theming 10 | */ 11 | .ui-tabs { 12 | position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ 13 | padding: .2em; 14 | } 15 | .ui-tabs .ui-tabs-nav { 16 | margin: 0; 17 | padding: .2em .2em 0; 18 | } 19 | .ui-tabs .ui-tabs-nav li { 20 | list-style: none; 21 | float: left; 22 | position: relative; 23 | top: 0; 24 | margin: 1px .2em 0 0; 25 | border-bottom-width: 0; 26 | padding: 0; 27 | white-space: nowrap; 28 | } 29 | .ui-tabs .ui-tabs-nav .ui-tabs-anchor { 30 | float: left; 31 | padding: .5em 1em; 32 | text-decoration: none; 33 | } 34 | .ui-tabs .ui-tabs-nav li.ui-tabs-active { 35 | margin-bottom: -1px; 36 | padding-bottom: 1px; 37 | } 38 | .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, 39 | .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, 40 | .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor { 41 | cursor: text; 42 | } 43 | .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor { 44 | cursor: pointer; 45 | } 46 | .ui-tabs .ui-tabs-panel { 47 | display: block; 48 | border-width: 0; 49 | padding: 1em 1.4em; 50 | background: none; 51 | } 52 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Content/themes/base/tooltip.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tooltip 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/tooltip/#theming 10 | */ 11 | .ui-tooltip { 12 | padding: 8px; 13 | position: absolute; 14 | z-index: 9999; 15 | max-width: 300px; 16 | -webkit-box-shadow: 0 0 5px #aaa; 17 | box-shadow: 0 0 5px #aaa; 18 | } 19 | body .ui-tooltip { 20 | border-width: 2px; 21 | } 22 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Default.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Upload_Attachment_Example.Default" %> 2 | 3 | 4 | 5 | 6 | 7 | Attachment Upload Example 8 | 9 | 10 | 11 | 12 | 13 |

14 |
15 |
16 |
17 | Email 18 | 19 |
20 |
21 | File input 22 | 23 |

Upload a file to be attached to your account.

24 |
25 | 26 | 27 | 28 |
29 |

Your file was successfuly uploaded to

30 |
31 |
32 | 33 | 34 | 35 | 36 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Default.aspx.designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace Upload_Attachment_Example { 11 | 12 | 13 | public partial class Default { 14 | 15 | /// 16 | /// form1 control. 17 | /// 18 | /// 19 | /// Auto-generated field. 20 | /// To modify move field declaration from designer file to code-behind file. 21 | /// 22 | protected global::System.Web.UI.HtmlControls.HtmlForm form1; 23 | 24 | /// 25 | /// exampleInputEmail control. 26 | /// 27 | /// 28 | /// Auto-generated field. 29 | /// To modify move field declaration from designer file to code-behind file. 30 | /// 31 | protected global::System.Web.UI.WebControls.TextBox exampleInputEmail; 32 | 33 | /// 34 | /// exampleInputFile control. 35 | /// 36 | /// 37 | /// Auto-generated field. 38 | /// To modify move field declaration from designer file to code-behind file. 39 | /// 40 | protected global::System.Web.UI.WebControls.FileUpload exampleInputFile; 41 | 42 | /// 43 | /// submitButton control. 44 | /// 45 | /// 46 | /// Auto-generated field. 47 | /// To modify move field declaration from designer file to code-behind file. 48 | /// 49 | protected global::System.Web.UI.WebControls.Button submitButton; 50 | 51 | /// 52 | /// error control. 53 | /// 54 | /// 55 | /// Auto-generated field. 56 | /// To modify move field declaration from designer file to code-behind file. 57 | /// 58 | protected global::System.Web.UI.HtmlControls.HtmlGenericControl error; 59 | 60 | /// 61 | /// success control. 62 | /// 63 | /// 64 | /// Auto-generated field. 65 | /// To modify move field declaration from designer file to code-behind file. 66 | /// 67 | protected global::System.Web.UI.HtmlControls.HtmlGenericControl success; 68 | 69 | /// 70 | /// accountCommand control. 71 | /// 72 | /// 73 | /// Auto-generated field. 74 | /// To modify move field declaration from designer file to code-behind file. 75 | /// 76 | protected global::System.Web.UI.WebControls.HyperLink accountCommand; 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Upload_Attachment_Example")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Upload_Attachment_Example")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("d3073106-b647-4617-9674-bbdef87d019f")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Revision and Build Numbers 33 | // by using the '*' as shown below: 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Properties/PublishProfiles/Attachment - Web Deploy.pubxml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | MSDeploy 9 | /subscriptions/6c2240d1-9ec7-46fc-8e58-47ef246fb97f/resourcegroups/Testing/providers/Microsoft.Web/sites/Attachment 10 | Testing 11 | AzureWebSite 12 | Release 13 | Any CPU 14 | http://attachment.azurewebsites.net 15 | True 16 | False 17 | attachment.scm.azurewebsites.net:443 18 | Attachment 19 | 20 | True 21 | WMSVC 22 | True 23 | $Attachment 24 | <_SavePWD>True 25 | <_DestinationType>AzureWebSite 26 | 27 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Properties/PublishProfiles/Attachment - Web Deploy.pubxml.user: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAN3ne1Ewi8Ea5UbVq/0B0TwAAAAACAAAAAAADZgAAwAAAABAAAACuKEMQSNKXnFCXqR1bUTucAAAAAASAAACgAAAAEAAAAIN8gbEbWt8xhgH7T4IW/vSAAAAAUwj6HAGqGoz106cFPuS5hll7QhA2rnzFODf4ryxhL4ELQcM2FldU6Zb6vZDS/YJENLPE7cvcD6Bm22jqWAf2UAl8IlPCFSP+NAXaDjTQWrm2lIFKp1YjIVbkZoBjKxmEGGCin70f/U/9z1B+MfJ0D2uyNsGPYyAGiy/uoRs6wk0UAAAA0pMFDVeur3leZ+4zwi6nN407Yyw= 10 | 11 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Upload_Attachment_Example.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.3.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | 26 | [global::System.Configuration.ApplicationScopedSettingAttribute()] 27 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 28 | [global::System.Configuration.SpecialSettingAttribute(global::System.Configuration.SpecialSetting.WebServiceUrl)] 29 | [global::System.Configuration.DefaultSettingValueAttribute("https://webservices.autotask.net/ATServices/1.5/atws.asmx")] 30 | public string Upload_Attachment_Example_Autotask_ATWS { 31 | get { 32 | return ((string)(this["Upload_Attachment_Example_Autotask_ATWS"])); 33 | } 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | https://webservices.autotask.net/ATServices/1.5/atws.asmx 7 | 8 | 9 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Web References/Autotask/ATWSResponse.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | Upload_Attachment_Example.Autotask.ATWSResponse, Web References.Autotask.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Web References/Autotask/ATWSZoneInfo.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | Upload_Attachment_Example.Autotask.ATWSZoneInfo, Web References.Autotask.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Web References/Autotask/Attachment.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | Upload_Attachment_Example.Autotask.Attachment, Web References.Autotask.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Web References/Autotask/EntityInfo.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | Upload_Attachment_Example.Autotask.EntityInfo, Web References.Autotask.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Web References/Autotask/Field.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | Upload_Attachment_Example.Autotask.Field, Web References.Autotask.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Web References/Autotask/Reference.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Web.Debug.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 29 | 30 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Web.Release.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 19 | 30 | 31 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/Web.config: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 10 |
12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | https://webservices.autotask.net/ATServices/1.5/atws.asmx 22 | 23 | 24 | 25 | 26 | 27 | 30 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/Upload Attachment Example/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Upload Attachment Example/Upload Attachment Example/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7.nupkg -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7/content/net45/web.config.install.xdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7/content/net45/web.config.uninstall.xdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | 13 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7/content/net46/web.config.install.xdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7/content/net46/web.config.uninstall.xdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | 13 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.CodeDom.Providers.DotNetCompilerPlatform 5 | 6 | 7 | 8 | 9 | Provides access to instances of the .NET Compiler Platform C# code generator and code compiler. 10 | 11 | 12 | 13 | 14 | Default Constructor 15 | 16 | 17 | 18 | 19 | Gets an instance of the .NET Compiler Platform C# code compiler. 20 | 21 | An instance of the .NET Compiler Platform C# code compiler 22 | 23 | 24 | 25 | Provides access to instances of the .NET Compiler Platform VB code generator and code compiler. 26 | 27 | 28 | 29 | 30 | Default Constructor 31 | 32 | 33 | 34 | 35 | Gets an instance of the .NET Compiler Platform VB code compiler. 36 | 37 | An instance of the .NET Compiler Platform VB code compiler 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/Microsoft.Net.Compilers.2.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/Microsoft.Net.Compilers.2.3.2.nupkg -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/build/Microsoft.Net.Compilers.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 11 | 12 | 13 | 18 | 19 | 20 | 22 | 24 | 26 | 28 | 29 | 30 | false 31 | $(MSBuildThisFileDirectory)..\tools\Microsoft.CSharp.Core.targets 32 | $(MSBuildThisFileDirectory)..\tools\Microsoft.VisualBasic.Core.targets 33 | 34 | 35 | 37 | 38 | $(MSBuildThisFileDirectory)..\tools 39 | csc.exe 40 | $(MSBuildThisFileDirectory)..\tools 41 | vbc.exe 42 | 43 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.Build.Tasks.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.Build.Tasks.CodeAnalysis.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.DiaSymReader.Native.amd64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.DiaSymReader.Native.amd64.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.DiaSymReader.Native.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.DiaSymReader.Native.x86.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.AppContext.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Console.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Diagnostics.Process.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Diagnostics.Process.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.Compression.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.FileSystem.DriveInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.FileSystem.DriveInfo.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.Pipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.IO.Pipes.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Claims.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Claims.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Threading.Thread.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Threading.Thread.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.ValueTuple.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Xml.XPath.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/VBCSCompiler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/VBCSCompiler.exe -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/csc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/csc.exe -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/csc.rsp: -------------------------------------------------------------------------------- 1 | # Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. 2 | 3 | # This file contains command-line options that the C# 4 | # command line compiler (CSC) will process as part 5 | # of every compilation, unless the "/noconfig" option 6 | # is specified. 7 | 8 | # Reference the common Framework libraries 9 | /r:Accessibility.dll 10 | /r:Microsoft.CSharp.dll 11 | /r:System.Configuration.dll 12 | /r:System.Configuration.Install.dll 13 | /r:System.Core.dll 14 | /r:System.Data.dll 15 | /r:System.Data.DataSetExtensions.dll 16 | /r:System.Data.Linq.dll 17 | /r:System.Data.OracleClient.dll 18 | /r:System.Deployment.dll 19 | /r:System.Design.dll 20 | /r:System.DirectoryServices.dll 21 | /r:System.dll 22 | /r:System.Drawing.Design.dll 23 | /r:System.Drawing.dll 24 | /r:System.EnterpriseServices.dll 25 | /r:System.Management.dll 26 | /r:System.Messaging.dll 27 | /r:System.Runtime.Remoting.dll 28 | /r:System.Runtime.Serialization.dll 29 | /r:System.Runtime.Serialization.Formatters.Soap.dll 30 | /r:System.Security.dll 31 | /r:System.ServiceModel.dll 32 | /r:System.ServiceModel.Web.dll 33 | /r:System.ServiceProcess.dll 34 | /r:System.Transactions.dll 35 | /r:System.Web.dll 36 | /r:System.Web.Extensions.Design.dll 37 | /r:System.Web.Extensions.dll 38 | /r:System.Web.Mobile.dll 39 | /r:System.Web.RegularExpressions.dll 40 | /r:System.Web.Services.dll 41 | /r:System.Windows.Forms.dll 42 | /r:System.Workflow.Activities.dll 43 | /r:System.Workflow.ComponentModel.dll 44 | /r:System.Workflow.Runtime.dll 45 | /r:System.Xml.dll 46 | /r:System.Xml.Linq.dll 47 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/csi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/csi.exe -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/csi.rsp: -------------------------------------------------------------------------------- 1 | /r:System 2 | /r:System.Core 3 | /r:Microsoft.CSharp 4 | /r:System.ValueTuple.dll 5 | /u:System 6 | /u:System.IO 7 | /u:System.Collections.Generic 8 | /u:System.Console 9 | /u:System.Diagnostics 10 | /u:System.Dynamic 11 | /u:System.Linq 12 | /u:System.Linq.Expressions 13 | /u:System.Text 14 | /u:System.Threading.Tasks -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/vbc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/vbc.exe -------------------------------------------------------------------------------- /Upload Attachment Example/packages/Microsoft.Net.Compilers.2.3.2/tools/vbc.rsp: -------------------------------------------------------------------------------- 1 | # Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. 2 | 3 | # This file contains command-line options that the VB 4 | # command line compiler (VBC) will process as part 5 | # of every compilation, unless the "/noconfig" option 6 | # is specified. 7 | 8 | # Reference the common Framework libraries 9 | /r:Accessibility.dll 10 | /r:System.Configuration.dll 11 | /r:System.Configuration.Install.dll 12 | /r:System.Data.dll 13 | /r:System.Data.OracleClient.dll 14 | /r:System.Deployment.dll 15 | /r:System.Design.dll 16 | /r:System.DirectoryServices.dll 17 | /r:System.dll 18 | /r:System.Drawing.Design.dll 19 | /r:System.Drawing.dll 20 | /r:System.EnterpriseServices.dll 21 | /r:System.Management.dll 22 | /r:System.Messaging.dll 23 | /r:System.Runtime.Remoting.dll 24 | /r:System.Runtime.Serialization.Formatters.Soap.dll 25 | /r:System.Security.dll 26 | /r:System.ServiceProcess.dll 27 | /r:System.Transactions.dll 28 | /r:System.Web.dll 29 | /r:System.Web.Mobile.dll 30 | /r:System.Web.RegularExpressions.dll 31 | /r:System.Web.Services.dll 32 | /r:System.Windows.Forms.dll 33 | /r:System.XML.dll 34 | 35 | /r:System.Workflow.Activities.dll 36 | /r:System.Workflow.ComponentModel.dll 37 | /r:System.Workflow.Runtime.dll 38 | /r:System.Runtime.Serialization.dll 39 | /r:System.ServiceModel.dll 40 | 41 | /r:System.Core.dll 42 | /r:System.Xml.Linq.dll 43 | /r:System.Data.Linq.dll 44 | /r:System.Data.DataSetExtensions.dll 45 | /r:System.Web.Extensions.dll 46 | /r:System.Web.Extensions.Design.dll 47 | /r:System.ServiceModel.Web.dll 48 | 49 | # Import System and Microsoft.VisualBasic 50 | /imports:System 51 | /imports:Microsoft.VisualBasic 52 | /imports:System.Linq 53 | /imports:System.Xml.Linq 54 | 55 | /optioninfer+ 56 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/bootstrap.3.3.7/bootstrap.3.3.7.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/bootstrap.3.3.7/bootstrap.3.3.7.nupkg -------------------------------------------------------------------------------- /Upload Attachment Example/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Upload Attachment Example/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Upload Attachment Example/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Upload Attachment Example/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.1.12.4/Tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | # VS 11 and above supports the new intellisense JS files 6 | $vsVersion = [System.Version]::Parse($dte.Version) 7 | $supportsJsIntelliSenseFile = $vsVersion.Major -ge 11 8 | 9 | if (-not $supportsJsIntelliSenseFile) { 10 | $displayVersion = $vsVersion.Major 11 | Write-Host "IntelliSense JS files are not supported by your version of Visual Studio: $displayVersion" 12 | exit 13 | } 14 | 15 | if ($scriptsFolderProjectItem -eq $null) { 16 | # No Scripts folder 17 | Write-Host "No Scripts folder found" 18 | exit 19 | } 20 | 21 | # Delete the vsdoc file from the project 22 | try { 23 | $vsDocProjectItem = $scriptsFolderProjectItem.ProjectItems.Item("jquery-$ver-vsdoc.js") 24 | Delete-ProjectItem $vsDocProjectItem 25 | } 26 | catch { 27 | Write-Host "Error deleting vsdoc file: " + $_.Exception -ForegroundColor Red 28 | exit 29 | } 30 | 31 | # Copy the intellisense file to the project from the tools folder 32 | $intelliSenseFileSourcePath = Join-Path $toolsPath $intelliSenseFileName 33 | try { 34 | $scriptsFolderProjectItem.ProjectItems.AddFromFileCopy($intelliSenseFileSourcePath) 35 | } 36 | catch { 37 | # This will throw if the file already exists, so we need to catch here 38 | } 39 | 40 | # Update the _references.js file 41 | AddOrUpdate-Reference $scriptsFolderProjectItem $jqueryFileNameRegEx $jqueryFileName -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.1.12.4/Tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | # Determine the file paths 6 | $projectIntelliSenseFilePath = Join-Path $projectScriptsFolderPath $intelliSenseFileName 7 | $origIntelliSenseFilePath = Join-Path $toolsPath $intelliSenseFileName 8 | 9 | if (Test-Path $projectIntelliSenseFilePath) { 10 | if ((Get-Checksum $projectIntelliSenseFilePath) -eq (Get-Checksum $origIntelliSenseFilePath)) { 11 | # The intellisense file in the project matches the file in the tools folder, delete it 12 | 13 | if ($scriptsFolderProjectItem -eq $null) { 14 | # No Scripts folder 15 | exit 16 | } 17 | 18 | try { 19 | # Get the project item for the intellisense file 20 | $intelliSenseFileProjectItem = $scriptsFolderProjectItem.ProjectItems.Item($intelliSenseFileName) 21 | } 22 | catch { 23 | # The item wasn't found 24 | exit 25 | } 26 | 27 | # Delete the project item 28 | Delete-ProjectItem $intelliSenseFileProjectItem 29 | } 30 | else { 31 | $projectScriptsFolderLeaf = Split-Path $projectScriptsFolderPath -Leaf 32 | Write-Host "Skipping '$projectScriptsFolderLeaf\$intelliSenseFileName' because it was modified." -ForegroundColor Magenta 33 | } 34 | } 35 | else { 36 | # The intellisense file was not found in project 37 | Write-Host "The intellisense file was not found in project at path $projectIntelliSenseFilePath" 38 | } 39 | 40 | # Update the _references.js file 41 | Remove-Reference $scriptsFolderProjectItem $jqueryFileNameRegEx -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.1.12.4/jQuery.1.12.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.1.12.4/jQuery.1.12.4.nupkg -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/accordion.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Accordion 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/accordion/#theming 10 | */ 11 | .ui-accordion .ui-accordion-header { 12 | display: block; 13 | cursor: pointer; 14 | position: relative; 15 | margin: 2px 0 0 0; 16 | padding: .5em .5em .5em .7em; 17 | min-height: 0; /* support: IE7 */ 18 | font-size: 100%; 19 | } 20 | .ui-accordion .ui-accordion-icons { 21 | padding-left: 2.2em; 22 | } 23 | .ui-accordion .ui-accordion-icons .ui-accordion-icons { 24 | padding-left: 2.2em; 25 | } 26 | .ui-accordion .ui-accordion-header .ui-accordion-header-icon { 27 | position: absolute; 28 | left: .5em; 29 | top: 50%; 30 | margin-top: -8px; 31 | } 32 | .ui-accordion .ui-accordion-content { 33 | padding: 1em 2.2em; 34 | border-top: 0; 35 | overflow: auto; 36 | } 37 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/category/theming/ 10 | */ 11 | @import "base.css"; 12 | @import "theme.css"; 13 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/autocomplete/#theming 10 | */ 11 | .ui-autocomplete { 12 | position: absolute; 13 | top: 0; 14 | left: 0; 15 | cursor: default; 16 | } 17 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/category/theming/ 10 | */ 11 | @import url("core.css"); 12 | 13 | @import url("accordion.css"); 14 | @import url("autocomplete.css"); 15 | @import url("button.css"); 16 | @import url("datepicker.css"); 17 | @import url("dialog.css"); 18 | @import url("draggable.css"); 19 | @import url("menu.css"); 20 | @import url("progressbar.css"); 21 | @import url("resizable.css"); 22 | @import url("selectable.css"); 23 | @import url("selectmenu.css"); 24 | @import url("sortable.css"); 25 | @import url("slider.css"); 26 | @import url("spinner.css"); 27 | @import url("tabs.css"); 28 | @import url("tooltip.css"); 29 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/core.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/category/theming/ 10 | */ 11 | 12 | /* Layout helpers 13 | ----------------------------------*/ 14 | .ui-helper-hidden { 15 | display: none; 16 | } 17 | .ui-helper-hidden-accessible { 18 | border: 0; 19 | clip: rect(0 0 0 0); 20 | height: 1px; 21 | margin: -1px; 22 | overflow: hidden; 23 | padding: 0; 24 | position: absolute; 25 | width: 1px; 26 | } 27 | .ui-helper-reset { 28 | margin: 0; 29 | padding: 0; 30 | border: 0; 31 | outline: 0; 32 | line-height: 1.3; 33 | text-decoration: none; 34 | font-size: 100%; 35 | list-style: none; 36 | } 37 | .ui-helper-clearfix:before, 38 | .ui-helper-clearfix:after { 39 | content: ""; 40 | display: table; 41 | border-collapse: collapse; 42 | } 43 | .ui-helper-clearfix:after { 44 | clear: both; 45 | } 46 | .ui-helper-clearfix { 47 | min-height: 0; /* support: IE7 */ 48 | } 49 | .ui-helper-zfix { 50 | width: 100%; 51 | height: 100%; 52 | top: 0; 53 | left: 0; 54 | position: absolute; 55 | opacity: 0; 56 | filter:Alpha(Opacity=0); /* support: IE8 */ 57 | } 58 | 59 | .ui-front { 60 | z-index: 100; 61 | } 62 | 63 | 64 | /* Interaction Cues 65 | ----------------------------------*/ 66 | .ui-state-disabled { 67 | cursor: default !important; 68 | } 69 | 70 | 71 | /* Icons 72 | ----------------------------------*/ 73 | 74 | /* states and images */ 75 | .ui-icon { 76 | display: block; 77 | text-indent: -99999px; 78 | overflow: hidden; 79 | background-repeat: no-repeat; 80 | } 81 | 82 | 83 | /* Misc visuals 84 | ----------------------------------*/ 85 | 86 | /* Overlays */ 87 | .ui-widget-overlay { 88 | position: fixed; 89 | top: 0; 90 | left: 0; 91 | width: 100%; 92 | height: 100%; 93 | } 94 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/dialog.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Dialog 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/dialog/#theming 10 | */ 11 | .ui-dialog { 12 | overflow: hidden; 13 | position: absolute; 14 | top: 0; 15 | left: 0; 16 | padding: .2em; 17 | outline: 0; 18 | } 19 | .ui-dialog .ui-dialog-titlebar { 20 | padding: .4em 1em; 21 | position: relative; 22 | } 23 | .ui-dialog .ui-dialog-title { 24 | float: left; 25 | margin: .1em 0; 26 | white-space: nowrap; 27 | width: 90%; 28 | overflow: hidden; 29 | text-overflow: ellipsis; 30 | } 31 | .ui-dialog .ui-dialog-titlebar-close { 32 | position: absolute; 33 | right: .3em; 34 | top: 50%; 35 | width: 20px; 36 | margin: -10px 0 0 0; 37 | padding: 1px; 38 | height: 20px; 39 | } 40 | .ui-dialog .ui-dialog-content { 41 | position: relative; 42 | border: 0; 43 | padding: .5em 1em; 44 | background: none; 45 | overflow: auto; 46 | } 47 | .ui-dialog .ui-dialog-buttonpane { 48 | text-align: left; 49 | border-width: 1px 0 0 0; 50 | background-image: none; 51 | margin-top: .5em; 52 | padding: .3em 1em .5em .4em; 53 | } 54 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { 55 | float: right; 56 | } 57 | .ui-dialog .ui-dialog-buttonpane button { 58 | margin: .5em .4em .5em 0; 59 | cursor: pointer; 60 | } 61 | .ui-dialog .ui-resizable-se { 62 | width: 12px; 63 | height: 12px; 64 | right: -5px; 65 | bottom: -5px; 66 | background-position: 16px 16px; 67 | } 68 | .ui-draggable .ui-dialog-titlebar { 69 | cursor: move; 70 | } 71 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/draggable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Draggable 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-draggable-handle { 10 | -ms-touch-action: none; 11 | touch-action: none; 12 | } 13 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/menu.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Menu 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/menu/#theming 10 | */ 11 | .ui-menu { 12 | list-style: none; 13 | padding: 0; 14 | margin: 0; 15 | display: block; 16 | outline: none; 17 | } 18 | .ui-menu .ui-menu { 19 | position: absolute; 20 | } 21 | .ui-menu .ui-menu-item { 22 | position: relative; 23 | margin: 0; 24 | padding: 3px 1em 3px .4em; 25 | cursor: pointer; 26 | min-height: 0; /* support: IE7 */ 27 | /* support: IE10, see #8844 */ 28 | list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); 29 | } 30 | .ui-menu .ui-menu-divider { 31 | margin: 5px 0; 32 | height: 0; 33 | font-size: 0; 34 | line-height: 0; 35 | border-width: 1px 0 0 0; 36 | } 37 | .ui-menu .ui-state-focus, 38 | .ui-menu .ui-state-active { 39 | margin: -1px; 40 | } 41 | 42 | /* icon support */ 43 | .ui-menu-icons { 44 | position: relative; 45 | } 46 | .ui-menu-icons .ui-menu-item { 47 | padding-left: 2em; 48 | } 49 | 50 | /* left-aligned */ 51 | .ui-menu .ui-icon { 52 | position: absolute; 53 | top: 0; 54 | bottom: 0; 55 | left: .2em; 56 | margin: auto 0; 57 | } 58 | 59 | /* right-aligned */ 60 | .ui-menu .ui-menu-icon { 61 | left: auto; 62 | right: 0; 63 | } 64 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/progressbar/#theming 10 | */ 11 | .ui-progressbar { 12 | height: 2em; 13 | text-align: left; 14 | overflow: hidden; 15 | } 16 | .ui-progressbar .ui-progressbar-value { 17 | margin: -1px; 18 | height: 100%; 19 | } 20 | .ui-progressbar .ui-progressbar-overlay { 21 | background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw=="); 22 | height: 100%; 23 | filter: alpha(opacity=25); /* support: IE8 */ 24 | opacity: 0.25; 25 | } 26 | .ui-progressbar-indeterminate .ui-progressbar-value { 27 | background-image: none; 28 | } 29 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/resizable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Resizable 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-resizable { 10 | position: relative; 11 | } 12 | .ui-resizable-handle { 13 | position: absolute; 14 | font-size: 0.1px; 15 | display: block; 16 | -ms-touch-action: none; 17 | touch-action: none; 18 | } 19 | .ui-resizable-disabled .ui-resizable-handle, 20 | .ui-resizable-autohide .ui-resizable-handle { 21 | display: none; 22 | } 23 | .ui-resizable-n { 24 | cursor: n-resize; 25 | height: 7px; 26 | width: 100%; 27 | top: -5px; 28 | left: 0; 29 | } 30 | .ui-resizable-s { 31 | cursor: s-resize; 32 | height: 7px; 33 | width: 100%; 34 | bottom: -5px; 35 | left: 0; 36 | } 37 | .ui-resizable-e { 38 | cursor: e-resize; 39 | width: 7px; 40 | right: -5px; 41 | top: 0; 42 | height: 100%; 43 | } 44 | .ui-resizable-w { 45 | cursor: w-resize; 46 | width: 7px; 47 | left: -5px; 48 | top: 0; 49 | height: 100%; 50 | } 51 | .ui-resizable-se { 52 | cursor: se-resize; 53 | width: 12px; 54 | height: 12px; 55 | right: 1px; 56 | bottom: 1px; 57 | } 58 | .ui-resizable-sw { 59 | cursor: sw-resize; 60 | width: 9px; 61 | height: 9px; 62 | left: -5px; 63 | bottom: -5px; 64 | } 65 | .ui-resizable-nw { 66 | cursor: nw-resize; 67 | width: 9px; 68 | height: 9px; 69 | left: -5px; 70 | top: -5px; 71 | } 72 | .ui-resizable-ne { 73 | cursor: ne-resize; 74 | width: 9px; 75 | height: 9px; 76 | right: -5px; 77 | top: -5px; 78 | } 79 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-selectable { 10 | -ms-touch-action: none; 11 | touch-action: none; 12 | } 13 | .ui-selectable-helper { 14 | position: absolute; 15 | z-index: 100; 16 | border: 1px dotted black; 17 | } 18 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/selectmenu.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectmenu 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/selectmenu/#theming 10 | */ 11 | .ui-selectmenu-menu { 12 | padding: 0; 13 | margin: 0; 14 | position: absolute; 15 | top: 0; 16 | left: 0; 17 | display: none; 18 | } 19 | .ui-selectmenu-menu .ui-menu { 20 | overflow: auto; 21 | /* Support: IE7 */ 22 | overflow-x: hidden; 23 | padding-bottom: 1px; 24 | } 25 | .ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup { 26 | font-size: 1em; 27 | font-weight: bold; 28 | line-height: 1.5; 29 | padding: 2px 0.4em; 30 | margin: 0.5em 0 0 0; 31 | height: auto; 32 | border: 0; 33 | } 34 | .ui-selectmenu-open { 35 | display: block; 36 | } 37 | .ui-selectmenu-button { 38 | display: inline-block; 39 | overflow: hidden; 40 | position: relative; 41 | text-decoration: none; 42 | cursor: pointer; 43 | } 44 | .ui-selectmenu-button span.ui-icon { 45 | right: 0.5em; 46 | left: auto; 47 | margin-top: -8px; 48 | position: absolute; 49 | top: 50%; 50 | } 51 | .ui-selectmenu-button span.ui-selectmenu-text { 52 | text-align: left; 53 | padding: 0.4em 2.1em 0.4em 1em; 54 | display: block; 55 | line-height: 1.4; 56 | overflow: hidden; 57 | text-overflow: ellipsis; 58 | white-space: nowrap; 59 | } 60 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/slider.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Slider 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/slider/#theming 10 | */ 11 | .ui-slider { 12 | position: relative; 13 | text-align: left; 14 | } 15 | .ui-slider .ui-slider-handle { 16 | position: absolute; 17 | z-index: 2; 18 | width: 1.2em; 19 | height: 1.2em; 20 | cursor: default; 21 | -ms-touch-action: none; 22 | touch-action: none; 23 | } 24 | .ui-slider .ui-slider-range { 25 | position: absolute; 26 | z-index: 1; 27 | font-size: .7em; 28 | display: block; 29 | border: 0; 30 | background-position: 0 0; 31 | } 32 | 33 | /* support: IE8 - See #6727 */ 34 | .ui-slider.ui-state-disabled .ui-slider-handle, 35 | .ui-slider.ui-state-disabled .ui-slider-range { 36 | filter: inherit; 37 | } 38 | 39 | .ui-slider-horizontal { 40 | height: .8em; 41 | } 42 | .ui-slider-horizontal .ui-slider-handle { 43 | top: -.3em; 44 | margin-left: -.6em; 45 | } 46 | .ui-slider-horizontal .ui-slider-range { 47 | top: 0; 48 | height: 100%; 49 | } 50 | .ui-slider-horizontal .ui-slider-range-min { 51 | left: 0; 52 | } 53 | .ui-slider-horizontal .ui-slider-range-max { 54 | right: 0; 55 | } 56 | 57 | .ui-slider-vertical { 58 | width: .8em; 59 | height: 100px; 60 | } 61 | .ui-slider-vertical .ui-slider-handle { 62 | left: -.3em; 63 | margin-left: 0; 64 | margin-bottom: -.6em; 65 | } 66 | .ui-slider-vertical .ui-slider-range { 67 | left: 0; 68 | width: 100%; 69 | } 70 | .ui-slider-vertical .ui-slider-range-min { 71 | bottom: 0; 72 | } 73 | .ui-slider-vertical .ui-slider-range-max { 74 | top: 0; 75 | } 76 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/sortable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Sortable 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-sortable-handle { 10 | -ms-touch-action: none; 11 | touch-action: none; 12 | } 13 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/spinner.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Spinner 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/spinner/#theming 10 | */ 11 | .ui-spinner { 12 | position: relative; 13 | display: inline-block; 14 | overflow: hidden; 15 | padding: 0; 16 | vertical-align: middle; 17 | } 18 | .ui-spinner-input { 19 | border: none; 20 | background: none; 21 | color: inherit; 22 | padding: 0; 23 | margin: .2em 0; 24 | vertical-align: middle; 25 | margin-left: .4em; 26 | margin-right: 22px; 27 | } 28 | .ui-spinner-button { 29 | width: 16px; 30 | height: 50%; 31 | font-size: .5em; 32 | padding: 0; 33 | margin: 0; 34 | text-align: center; 35 | position: absolute; 36 | cursor: default; 37 | display: block; 38 | overflow: hidden; 39 | right: 0; 40 | } 41 | /* more specificity required here to override default borders */ 42 | .ui-spinner a.ui-spinner-button { 43 | border-top: none; 44 | border-bottom: none; 45 | border-right: none; 46 | } 47 | /* vertically center icon */ 48 | .ui-spinner .ui-icon { 49 | position: absolute; 50 | margin-top: -8px; 51 | top: 50%; 52 | left: 0; 53 | } 54 | .ui-spinner-up { 55 | top: 0; 56 | } 57 | .ui-spinner-down { 58 | bottom: 0; 59 | } 60 | 61 | /* TR overrides */ 62 | .ui-spinner .ui-icon-triangle-1-s { 63 | /* need to fix icons sprite */ 64 | background-position: -65px -16px; 65 | } 66 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/tabs.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tabs 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/tabs/#theming 10 | */ 11 | .ui-tabs { 12 | position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ 13 | padding: .2em; 14 | } 15 | .ui-tabs .ui-tabs-nav { 16 | margin: 0; 17 | padding: .2em .2em 0; 18 | } 19 | .ui-tabs .ui-tabs-nav li { 20 | list-style: none; 21 | float: left; 22 | position: relative; 23 | top: 0; 24 | margin: 1px .2em 0 0; 25 | border-bottom-width: 0; 26 | padding: 0; 27 | white-space: nowrap; 28 | } 29 | .ui-tabs .ui-tabs-nav .ui-tabs-anchor { 30 | float: left; 31 | padding: .5em 1em; 32 | text-decoration: none; 33 | } 34 | .ui-tabs .ui-tabs-nav li.ui-tabs-active { 35 | margin-bottom: -1px; 36 | padding-bottom: 1px; 37 | } 38 | .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, 39 | .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, 40 | .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor { 41 | cursor: text; 42 | } 43 | .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor { 44 | cursor: pointer; 45 | } 46 | .ui-tabs .ui-tabs-panel { 47 | display: block; 48 | border-width: 0; 49 | padding: 1em 1.4em; 50 | background: none; 51 | } 52 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Content/Content/themes/base/tooltip.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tooltip 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/tooltip/#theming 10 | */ 11 | .ui-tooltip { 12 | padding: 8px; 13 | position: absolute; 14 | z-index: 9999; 15 | max-width: 300px; 16 | -webkit-box-shadow: 0 0 5px #aaa; 17 | box-shadow: 0 0 5px #aaa; 18 | } 19 | body .ui-tooltip { 20 | border-width: 2px; 21 | } 22 | -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | if ($scriptsFolderProjectItem -eq $null) { 6 | # No Scripts folder 7 | Write-Host "No Scripts folder found" 8 | exit 9 | } 10 | 11 | # Update the _references.js file 12 | AddOrUpdate-Reference $scriptsFolderProjectItem $juiFileNameRegEx $juiFileName -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/Tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | # Update the _references.js file 6 | Remove-Reference $scriptsFolderProjectItem $juiFileNameRegEx -------------------------------------------------------------------------------- /Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/jQuery.UI.Combined.1.12.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutotaskDevelopment/Sample-Code/9216f3f18937b0b6fbbed73c339482e71ddebca7/Upload Attachment Example/packages/jQuery.UI.Combined.1.12.1/jQuery.UI.Combined.1.12.1.nupkg --------------------------------------------------------------------------------