nanoFramework.Azure.Devices/nanoFramework.Azure.Devices.../MethodCallback.cs

14 строки
473 B
C#

// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace nanoFramework.Azure.Devices.Client
{
/// <summary>
/// Method call back delegate.
/// </summary>
/// <param name="rid">The request ID.</param>
/// <param name="payload">The payload.</param>
/// <returns></returns>
public delegate string MethodCallback(int rid, string payload);
}