Glyma.NodeServiceApp.NodeService.GetApplicationTypeDescription C# (CSharp) Méthode

GetApplicationTypeDescription() public méthode

public GetApplicationTypeDescription ( Type serviceApplicationType ) : SPPersistedTypeDescription
serviceApplicationType System.Type
Résultat SPPersistedTypeDescription
        public SPPersistedTypeDescription GetApplicationTypeDescription(Type serviceApplicationType)
        {
            if (serviceApplicationType != typeof(NodeServiceApplication))
            {
                throw new NotSupportedException();
            }

            return new SPPersistedTypeDescription("Glyma Node Service", "The Glyma Node Service provides transactional-based graph persistence and retrieval services to the Glyma web application.");
        }