AMEEClient.Client.DeleteProfile C# (CSharp) Method

DeleteProfile() public method

public DeleteProfile ( string uid ) : DeleteProfileResponse
uid string
return DeleteProfileResponse
        public DeleteProfileResponse DeleteProfile(string uid)
        {
            string uriTemplate = "/{uid}"; // prevent caching
            return Request<DeleteProfileResponse>("profiles", uriTemplate, "DELETE",
                                                  new Dictionary<string, object>
                                                      {
                                                          {"uid",uid}
                                                      }, TimeSpan.FromMilliseconds(0), "default");
        }