Exemplo n.º 1
0
        public async Task <IHttpActionResult> AddDomain(iS3DomainHandle handle)
        {
            if (handle == null)
            {
                return(BadRequest("Argument Null"));
            }

            iS3DomainHandle newHandle = await MiniServer.AddDomain(handle);

            return(Ok(newHandle));
        }