public static string GetDeviceModels(this IWICMetadataHandlerInfo metadataHandlerInfo) { FetchIntoBuffer <char> fetcher = metadataHandlerInfo.GetDeviceModels; return(fetcher.FetchString()); }
public static string[] GetFileExtensions(this IWICBitmapCodecInfo bitmapCodecInfo) { FetchIntoBuffer <char> fetcher = bitmapCodecInfo.GetFileExtensions; return(fetcher.FetchString().Split(',')); }
public static string GetColorManagementVersion(this IWICBitmapCodecInfo bitmapCodecInfo) { FetchIntoBuffer <char> fetcher = bitmapCodecInfo.GetColorManagementVersion; return(fetcher.FetchString()); }
public static string GetDeviceModels(this IWICBitmapCodecInfo bitmapCodecInfo) { FetchIntoBuffer <char> fetcher = bitmapCodecInfo.GetDeviceModels; return(fetcher.FetchString()); }
public static string GetAuthor(this IWICComponentInfo componentInfo) { FetchIntoBuffer <char> fetcher = componentInfo.GetAuthor; return(fetcher.FetchString()); }
public static string GetSpecVersion(this IWICComponentInfo componentInfo) { FetchIntoBuffer <char> fetcher = componentInfo.GetSpecVersion; return(fetcher.FetchString()); }
public static string GetFriendlyName(this IWICComponentInfo componentInfo) { FetchIntoBuffer <char> fetcher = componentInfo.GetFriendlyName; return(fetcher.FetchString()); }
public static string GetLocation(this IWICMetadataQueryReader metadataQueryReader) { FetchIntoBuffer <char> fetcher = metadataQueryReader.GetLocation; return(fetcher.FetchString()); }