代码拉取完成,页面将自动刷新
/*
* Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file
* @kit ConnectivityKit
*/
import { AsyncCallback, Callback } from './@ohos.base';
/**
* Provides extended methods to operate or manage Wi-Fi.
*
* <p>The APIs involved in this file are non-general APIs.
* These extended APIs are only used by some product types, such as routers.
* Common products should not use these APIs.</p>
*
* @namespace wifiManagerExt
* @since 9
*/
declare namespace wifiManagerExt {
/**
* Enable Wi-Fi hotspot function.
* This method is asynchronous. After the Wi-Fi hotspot is enabled, Wi-Fi may be disabled.
* @permission ohos.permission.MANAGE_WIFI_HOTSPOT_EXT
* @throws {BusinessError} 201 - Permission denied.
* @throws {BusinessError} 801 - Capability not supported.
* @throws {BusinessError} 2701000 - Operation failed.
* @syscap SystemCapability.Communication.WiFi.AP.Extension
* @since 9
* @deprecated since 10
*/
function enableHotspot(): void;
/**
* Disable Wi-Fi hotspot function.
* If Wi-Fi is enabled after the Wi-Fi hotspot is disabled, Wi-Fi may be re-enabled.
* @permission ohos.permission.MANAGE_WIFI_HOTSPOT_EXT
* @throws {BusinessError} 201 - Permission denied.
* @throws {BusinessError} 801 - Capability not supported.
* @throws {BusinessError} 2701000 - Operation failed.
* @syscap SystemCapability.Communication.WiFi.AP.Extension
* @since 9
* @deprecated since 10
*/
function disableHotspot(): void;
/**
* Obtains the supported power Mode.
* @permission ohos.permission.GET_WIFI_INFO
* @returns { Promise<Array<PowerMode>> } Returns a list of application PowerMode.
* @throws {BusinessError} 201 - Permission denied.
* @throws {BusinessError} 801 - Capability not supported.
* @throws {BusinessError} 2701000 - Operation failed.
* @syscap SystemCapability.Communication.WiFi.AP.Extension
* @since 9
*/
function getSupportedPowerMode(): Promise<Array<PowerMode>>;
/**
* Obtains the supported power Mode.
* @permission ohos.permission.GET_WIFI_INFO
* @param { AsyncCallback<Array<PowerMode>> } callback - the callback of model.
* @throws {BusinessError} 201 - Permission denied.
* @throws {BusinessError} 801 - Capability not supported.
* @throws {BusinessError} 2701000 - Operation failed.
* @syscap SystemCapability.Communication.WiFi.AP.Extension
* @since 9
*/
function getSupportedPowerMode(callback: AsyncCallback<Array<PowerMode>>): void;
/**
* Obtains the current Wi-Fi power mode.
* @permission ohos.permission.GET_WIFI_INFO
* @returns { Promise<PowerMode> }
* @throws {BusinessError} 201 - Permission denied.
* @throws {BusinessError} 801 - Capability not supported.
* @throws {BusinessError} 2701000 - Operation failed.
* @syscap SystemCapability.Communication.WiFi.AP.Extension
* @since 9
*/
function getPowerMode(): Promise<PowerMode>;
/**
* Obtains the current Wi-Fi power mode.
* @permission ohos.permission.GET_WIFI_INFO
* @param { AsyncCallback<PowerMode> } callback - the callback of model
* @throws {BusinessError} 201 - Permission denied.
* @throws {BusinessError} 801 - Capability not supported.
* @throws {BusinessError} 2701000 - Operation failed.
* @syscap SystemCapability.Communication.WiFi.AP.Extension
* @since 9
*/
function getPowerMode(callback: AsyncCallback<PowerMode>): void;
/**
* Set the current Wi-Fi power mode.
* @permission ohos.permission.MANAGE_WIFI_HOTSPOT_EXT
* @param { PowerMode } model --Wi-Fi power mode.
* @throws {BusinessError} 201 - Permission denied.
* @throws {BusinessError} 801 - Capability not supported.
* @throws {BusinessError} 2701000 - Operation failed.
* @syscap SystemCapability.Communication.WiFi.AP.Extension
* @since 9
* @deprecated since 10
*/
function setPowerMode(mode: PowerMode): void;
/**
* The power Mode enumeration.
*
* @enum { number } PowerMode
* @syscap SystemCapability.Communication.WiFi.AP.Extension
* @since 9
*/
export enum PowerMode {
/**
* Sleeping Mode.
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @since 9
*/
SLEEPING = 0,
/**
* General Mode.
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @since 9
* */
GENERAL = 1,
/**
* Through wall Mode.
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @since 9
* */
THROUGH_WALL = 2,
}
}
export default wifiManagerExt;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。