FileRevocationManager.Revoke(String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
참고
2022년 7월부터 Microsoft는 WIP(Windows Information Protection) 및 WIP를 지원하는 API를 더 이상 사용하지 않습니다. Microsoft는 지원되는 Windows 버전에서 WIP를 계속 지원합니다. 새 버전의 Windows에는 WIP에 대한 새로운 기능이 포함되지 않으며 이후 버전의 Windows에서는 지원되지 않습니다. 자세한 내용은 Windows Information Protection 일몰 발표를 참조하세요.
데이터 보호 요구 사항에 따라 Microsoft Purview Information Protection 및 Microsoft Purview 데이터 손실 방지 사용하는 것이 좋습니다. Purview는 구성 설정을 간소화하고 고급 기능 집합을 제공합니다.
참고
FileRevocationManager는 Windows 10 후 릴리스에 사용할 수 없습니다. 대신 FileProtectionManager를 사용합니다.
지정된 엔터프라이즈 ID에 대한 선택적 초기화를 위해 보호되는 모든 파일 및 폴더를 취소합니다.
public:
static void Revoke(Platform::String ^ enterpriseIdentity);
/// [Windows.Foundation.Metadata.Deprecated("FileRevocationManager might be unavailable after Windows 10. Instead, use FileProtectionManager.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, Windows.Security.EnterpriseData.EnterpriseDataContract)]
static void Revoke(winrt::hstring const& enterpriseIdentity);
/// [Windows.Foundation.Metadata.Deprecated("FileRevocationManager might be unavailable after Windows 10. Instead, use FileProtectionManager.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, "Windows.Security.EnterpriseData.EnterpriseDataContract")]
static void Revoke(winrt::hstring const& enterpriseIdentity);
[Windows.Foundation.Metadata.Deprecated("FileRevocationManager might be unavailable after Windows 10. Instead, use FileProtectionManager.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, typeof(Windows.Security.EnterpriseData.EnterpriseDataContract))]
public static void Revoke(string enterpriseIdentity);
[Windows.Foundation.Metadata.Deprecated("FileRevocationManager might be unavailable after Windows 10. Instead, use FileProtectionManager.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, "Windows.Security.EnterpriseData.EnterpriseDataContract")]
public static void Revoke(string enterpriseIdentity);
function revoke(enterpriseIdentity)
Public Shared Sub Revoke (enterpriseIdentity As String)
매개 변수
- enterpriseIdentity
-
String
Platform::String
winrt::hstring
이 엔터프라이즈 ID에 대한 선택적 초기화로 보호되는 모든 파일 및 폴더를 취소합니다. enterpriseIdentity 값은 IDN(Internationalized Domain Name)으로 서식을 지정해야 하며 공백을 포함할 수 없습니다. 예: contoso.com
.
- 특성
설명
앱에서 사용자가 더 이상 유효하지 않은 것으로 확인되면 다음 예제와 같이 Revoke 메서드를 사용하여 엔터프라이즈 ID에 대해 보호되는 모든 파일 및 폴더에 대한 액세스를 신속하게 취소할 수 있습니다. 이 파일은 Revoke 메서드에 의해 삭제되지 않습니다. Revoke 메서드는 파일에 액세스할 수 없는 상태로 파일을 배치합니다. 앱에 코드를 추가하여 액세스할 수 없고 해지된 파일을 삭제할 수 있습니다.