NamedResource.ResolveAll 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
ResolveAll() |
이 NamedResource 개체를 기본 컨텍스트에 대해 확인하고 가능한 모든 후보 목록을 기본 설정 순서로 반환합니다. 참고 ResolveAll은 Windows 8.1 후 릴리스에서 변경되거나 사용할 수 없습니다. 대신 ResolveAll(ResourceContext)을 사용합니다. |
ResolveAll(ResourceContext) |
제공된 컨텍스트에 대해 이 NamedResource 개체를 확인하고 가능한 모든 후보 목록을 기본 설정 순서로 반환합니다. |
ResolveAll()
이 NamedResource 개체를 기본 컨텍스트에 대해 확인하고 가능한 모든 후보 목록을 기본 설정 순서로 반환합니다.
참고
ResolveAll은 Windows 8.1 후 릴리스에서 변경되거나 사용할 수 없습니다. 대신 ResolveAll(ResourceContext)을 사용합니다.
public:
virtual IVectorView<ResourceCandidate ^> ^ ResolveAll() = ResolveAll;
/// [Windows.Foundation.Metadata.Deprecated("ResolveAll may be altered or unavailable for releases after Windows 8.1. Instead, use ResolveAll(ResourceContext).", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, Windows.Foundation.UniversalApiContract)]
/// [Windows.Foundation.Metadata.Overload("ResolveAll")]
IVectorView<ResourceCandidate> ResolveAll();
/// [Windows.Foundation.Metadata.Overload("ResolveAll")]
/// [Windows.Foundation.Metadata.Deprecated("ResolveAll may be altered or unavailable for releases after Windows 8.1. Instead, use ResolveAll(ResourceContext).", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, "Windows.Foundation.UniversalApiContract")]
IVectorView<ResourceCandidate> ResolveAll();
/// [Windows.Foundation.Metadata.Overload("ResolveAll")]
IVectorView<ResourceCandidate> ResolveAll();
[Windows.Foundation.Metadata.Deprecated("ResolveAll may be altered or unavailable for releases after Windows 8.1. Instead, use ResolveAll(ResourceContext).", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, typeof(Windows.Foundation.UniversalApiContract))]
[Windows.Foundation.Metadata.Overload("ResolveAll")]
public IReadOnlyList<ResourceCandidate> ResolveAll();
[Windows.Foundation.Metadata.Overload("ResolveAll")]
[Windows.Foundation.Metadata.Deprecated("ResolveAll may be altered or unavailable for releases after Windows 8.1. Instead, use ResolveAll(ResourceContext).", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, "Windows.Foundation.UniversalApiContract")]
public IReadOnlyList<ResourceCandidate> ResolveAll();
[Windows.Foundation.Metadata.Overload("ResolveAll")]
public IReadOnlyList<ResourceCandidate> ResolveAll();
function resolveAll()
Public Function ResolveAll () As IReadOnlyList(Of ResourceCandidate)
반환
기본 설정 순서대로 ResourceCandidate 개체의 목록입니다. 목록의 첫 번째 위치에 있는 개체가 해당 컨텍스트에 가장 적합한 후보이며 마지막 위치에 있는 개체가 가장 적절하지 않습니다.
- 특성
추가 정보
적용 대상
ResolveAll(ResourceContext)
제공된 컨텍스트에 대해 이 NamedResource 개체를 확인하고 가능한 모든 후보 목록을 기본 설정 순서로 반환합니다.
public:
virtual IVectorView<ResourceCandidate ^> ^ ResolveAll(ResourceContext ^ resourceContext) = ResolveAll;
/// [Windows.Foundation.Metadata.Overload("ResolveAllForContext")]
IVectorView<ResourceCandidate> ResolveAll(ResourceContext const& resourceContext);
[Windows.Foundation.Metadata.Overload("ResolveAllForContext")]
public IReadOnlyList<ResourceCandidate> ResolveAll(ResourceContext resourceContext);
function resolveAll(resourceContext)
Public Function ResolveAll (resourceContext As ResourceContext) As IReadOnlyList(Of ResourceCandidate)
매개 변수
- resourceContext
- ResourceContext
NamedResource를 확인해야 하는 컨텍스트입니다.
반환
기본 설정 순서대로 ResourceCandidate 개체의 목록입니다. 목록의 첫 번째 위치에 있는 개체가 해당 컨텍스트에 가장 적합한 후보이며 마지막 위치에 있는 개체가 가장 적절하지 않습니다.
- 특성
설명
UWP 앱용 리소스 관리 시스템은 규모에 맞게 리소스 조정을 지원합니다. Windows 8.1 시작해서 앱이 소유한 다양한 보기는 서로 다른 배율을 사용할 수 있는 여러 디스플레이 디바이스에 동시에 표시할 수 있습니다. 이러한 방식으로 크기 조정은 보기별 특성입니다.
ResolveAll 메서드는 런타임 컨텍스트와 관련하여 NamedResource 에 대한 모든 후보를 반환하고 ResourceContext 의 배율 한정자는 연결된 보기에 따라 달라지기 때문에 ResolveAll은 항상 리소스가 사용될 뷰에서 가져온 ResourceContext 개체를 전달하도록 호출되어야 합니다.
ResourceContext.GetForCurrentView 메서드를 참조하세요.