Goedel.Mesh.MeshClient.GetNetworkProfile C# (CSharp) Method

GetNetworkProfile() public method

Retreive the default network profile.
public GetNetworkProfile ( ) : NetworkProfile
return NetworkProfile
        public NetworkProfile GetNetworkProfile() {
            if (PersonalProfile == null) return null;

            var PasswordProfileEntry = PersonalProfile.GetNetworkProfile();
            if (PasswordProfileEntry == null) return null;

            var SignedApplicationProfile = GetApplicationProfile(
                PasswordProfileEntry.Identifier);
            if (SignedApplicationProfile == null) return null;

            return null;
            }