Goedel.Mesh.MeshPortalDirect.Init C# (CSharp) Method

Init() protected method

Initialize the portal
protected Init ( string ServiceName, string MeshStore, string PortalStore ) : void
ServiceName string DNS service name
MeshStore string File name for the Mesh Store.
PortalStore string File name for the Portal Store.
return void
        protected void Init (string ServiceName, string MeshStore, string PortalStore) {
            this.ServiceName = ServiceName;
            this.MeshStore = MeshStore;
            this.PortalStore = PortalStore;
            MeshServiceHost = new PublicMeshServiceProvider(ServiceName, MeshStore, PortalStore);
            }