Microsoft.VisualStudio.Project.ConfigProvider.GetSupportedPlatformNames C# (CSharp) Method

GetSupportedPlatformNames() public method

Returns the set of platforms that are installed on the user's machine.
public GetSupportedPlatformNames ( uint celt, string names, uint actual ) : int
celt uint Specifies the requested number of supported platform names. If this number is unknown, can be zero.
names string On input, an allocated array to hold the number of names specified by . This parameter can also be if the parameter is zero. On output, contains the names of supported platforms
actual uint The actual number of platform names returned.
return int
        public virtual int GetSupportedPlatformNames(uint celt, string[] names, uint[] actual)
        {
            string[] platforms = this.GetSupportedPlatformsFromProject();
            return GetPlatforms(celt, names, actual, platforms);
        }