Created
July 23, 2012 05:42
-
-
Save sandrinodimattia/3162116 to your computer and use it in GitHub Desktop.
NetFwAuthorizedApplication
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <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