Skip to content
Snippets Groups Projects
  • svatal's avatar
    d4a7a47b
    new protocol (chrome 62) · d4a7a47b
    svatal authored
    + deprecated json field support (-> obsolete)
    + event with dictionary support
    + updated sample not to use deprecated command (SetVisibleSizeCommand ->
    SetDeviceMetricsOverrideCommand)
    d4a7a47b
    History
    new protocol (chrome 62)
    svatal authored
    + deprecated json field support (-> obsolete)
    + event with dictionary support
    + updated sample not to use deprecated command (SetVisibleSizeCommand ->
    SetDeviceMetricsOverrideCommand)
EnableCommand.cs 381 B
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;

namespace MasterDevs.ChromeDevTools.Protocol.Chrome.Animation
{
	/// <summary>
	/// Enables animation domain notifications.
	/// </summary>
	[Command(ProtocolName.Animation.Enable)]
	[SupportedBy("Chrome")]
	public class EnableCommand: ICommand<EnableCommandResponse>
	{
	}
}