-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
84f1cf6
commit cc3b457
Showing
1 changed file
with
11 additions
and
11 deletions.
There are no files selected for viewing
22 changes: 11 additions & 11 deletions
22
src/Microsoft.Devices.HardwareDevCenterManager/DevCenterOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
/*++ | ||
Copyright (c) Microsoft Corporation. All rights reserved. | ||
Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
--*/ | ||
|
||
using Microsoft.Devices.HardwareDevCenterManager.DevCenterApi; | ||
using System; | ||
|
||
namespace Microsoft.Devices.HardwareDevCenterManager | ||
{ | ||
public class DevCenterOptions | ||
{ | ||
public uint HttpTimeoutSeconds { get; set; } | ||
public int RequestDelayMs { get; set; } | ||
public Guid CorrelationId { get; set; } | ||
public LastCommandDelegate LastCommand { get; set; } | ||
} | ||
namespace Microsoft.Devices.HardwareDevCenterManager; | ||
|
||
public delegate void LastCommandDelegate(DevCenterErrorDetails error); | ||
public class DevCenterOptions | ||
{ | ||
public uint HttpTimeoutSeconds { get; set; } | ||
public int RequestDelayMs { get; set; } | ||
public Guid CorrelationId { get; set; } | ||
public LastCommandDelegate LastCommand { get; set; } | ||
} | ||
|
||
public delegate void LastCommandDelegate(DevCenterErrorDetails error); |