Amazon.IoT.AmazonIoTClient.BeginCreateThing C# (CSharp) Метод

BeginCreateThing() публичный Метод

Initiates the asynchronous execution of the CreateThing operation.
public BeginCreateThing ( CreateThingRequest request, AsyncCallback callback, object state ) : IAsyncResult
request Amazon.IoT.Model.CreateThingRequest Container for the necessary parameters to execute the CreateThing operation on AmazonIoTClient.
callback AsyncCallback An AsyncCallback delegate that is invoked when the operation completes.
state object A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.
Результат IAsyncResult
        public IAsyncResult BeginCreateThing(CreateThingRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new CreateThingRequestMarshaller();
            var unmarshaller = CreateThingResponseUnmarshaller.Instance;

            return BeginInvoke<CreateThingRequest>(request, marshaller, unmarshaller,
                callback, state);
        }
AmazonIoTClient