Goedel.Mesh.PublicMeshServiceProvider.PublicMeshServiceProvider C# (CSharp) Method

PublicMeshServiceProvider() public method

Initialize a Mesh Service Provider.
public PublicMeshServiceProvider ( string Domain, string MeshStore, string PortalStore ) : System
Domain string The domain of the service provider.
MeshStore string The mesh persistence store filename.
PortalStore string The portal persistence store fielname.
return System
        public PublicMeshServiceProvider(string Domain, string MeshStore, string PortalStore) {
            _Mesh = new Mesh(Domain, MeshStore, PortalStore);
            }
PublicMeshServiceProvider