Skip to content
Snippets Groups Projects
Select Git revision
  • 3020dbe86732ed6b7d6883732973583ccc4efea2
  • master default
  • dependabot/nuget/source/Sample/Newtonsoft.Json-13.0.1
  • dependabot/nuget/source/MasterDevs.ChromeDevTools.Tests/Newtonsoft.Json-13.0.1
  • dependabot/nuget/source/ProtocolGenerator/Newtonsoft.Json-13.0.1
  • dependabot/nuget/source/ChromeDevTools/Newtonsoft.Json-13.0.1
  • dependabot/nuget/source/ChromeDevTools/System.Net.Http-4.3.4
  • revert-29-revert-24-protocol_62
  • revert-24-protocol_62
  • 1.1.0
  • 1.0.2
  • 1.0.1
  • 1.0.0.40915
13 results

AnimationCanceledEvent.cs

Blame
  • AnimationCanceledEvent.cs 485 B
    using MasterDevs.ChromeDevTools;
    using Newtonsoft.Json;
    using System.Collections.Generic;
    
    namespace MasterDevs.ChromeDevTools.Protocol.Chrome.Animation
    {
    	/// <summary>
    	/// Event for when an animation has been cancelled.
    	/// </summary>
    	[Event(ProtocolName.Animation.AnimationCanceled)]
    	[SupportedBy("Chrome")]
    	public class AnimationCanceledEvent
    	{
    		/// <summary>
    		/// Gets or sets Id of the animation that was cancelled.
    		/// </summary>
    		public string Id { get; set; }
    	}
    }