Generate the List of All Available Facets and Their Properties
Our colleague Jens Suessmeyer in Germany has figured out how to generate the list of all facets and their properties. He has posted the list on his blog. Below is the code snippet from Jens:
foreach (FacetInfo info in PolicyStore.Facets)
{
Console.WriteLine(info.Name);
foreach (System.Reflection.PropertyInfo p in info.FacetProperties)
{
Console.WriteLine("\t" + p.Name);
}
}
About the Author:
Hongfei Guo is a PM on the SQL Server Manageability team at Microsoft
Comments
- Anonymous
April 20, 2009
PingBack from http://asp-net-hosting.simplynetdev.com/generate-the-list-of-all-available-facets-and-their-properties/