LoadedImageSurface.Close 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
LoadedImageSurface 및 연결된 리소스를 삭제합니다.
public:
virtual void Close() = Close;
void Close();
// This member is not implemented in C#
function close()
' This member is not implemented in VB.NET
구현
M:Windows.Foundation.IClosable.Close
M:System.IDisposable.Close
예제
이 예제에서는 LoadedImageSurface가 닫힌 후에도 CompositionSurfaceBrush가 계속 존재합니다.
Compositor compositor = new Compositor();
CompositionSurfaceBrush imageBrush = compositor.CreateSurfaceBrush();
LoadedImageSurface loadedSurface = LoadedImageSurface.StartLoadFromUri(new Uri("ms-appx:///Assets/myPic.jpg"));
loadedSurface.LoadCompleted += Load_Completed;
imageBrush.Surface = loadedSurface;
loadedSurface.Close();
// The imageBrush still exists
설명
이 메서드를 호출하면 LoadedImageSurface 참조가 삭제되지만 여전히 활성 참조가 있는 LoadedImageSurface 에서 만든 브러시 또는 표면은 명시적으로 삭제하지 않는 한 계속 렌더링됩니다.