public static Guid[] GetContainerFormats(this IWICMetadataHandlerInfo metadataHandlerInfo)
        {
            FetchIntoBuffer <Guid> fetcher = metadataHandlerInfo.GetContainerFormats;

            return(fetcher.FetchArray());
        }
        public static string GetDeviceModels(this IWICMetadataHandlerInfo metadataHandlerInfo)
        {
            FetchIntoBuffer <char> fetcher = metadataHandlerInfo.GetDeviceModels;

            return(fetcher.FetchString());
        }
 public static Guid[] GetContainerFormats(this IWICMetadataHandlerInfo metadataHandlerInfo)
 {
     return(FetchIntoBufferHelper.FetchArray <Guid>(metadataHandlerInfo.GetContainerFormats));
 }
Example #4
0
 public void GetMetadataHandlerInfo(out IWICMetadataHandlerInfo ppIHandler)
 {
     Log.Trace("MetadataReader.GetMetadataHandlerInfo called");
     ppIHandler = new MetadataHandlerInfo();
     Log.Trace("MetadataReader.GetMetadataHandlerInfo finished");
 }
 public static string GetDeviceModels(this IWICMetadataHandlerInfo metadataHandlerInfo)
 {
     return(FetchIntoBufferHelper.FetchString(metadataHandlerInfo.GetDeviceModels));
 }