Skip to content

Instantly share code, notes, and snippets.

@sandrinodimattia
Created July 23, 2012 05:42
Show Gist options
  • Save sandrinodimattia/3162116 to your computer and use it in GitHub Desktop.
Save sandrinodimattia/3162116 to your computer and use it in GitHub Desktop.
NetFwAuthorizedApplication
/// <summary>
/// Msdn reference: http://msdn.microsoft.com/en-us/library/aa365100(v=VS.85).aspx
/// </summary>
public class NetFwAuthorizedApplication
{
...
/// <summary>
/// Initialize the application object.
/// </summary>
/// <param name="comObj"></param>
internal NetFwAuthorizedApplication(dynamic comObj)
{
this.Name = comObj.Name;
this.RemoteAddress = comObj.RemoteAddress;
this.Enabled = comObj.Enabled;
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment