Goedel.Mesh.MeshClient.GetNetworkProfile C# (CSharp) 메소드

GetNetworkProfile() 공개 메소드

Retreive the default network profile.
public GetNetworkProfile ( ) : NetworkProfile
리턴 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;
            }