Glyma.NodeServiceApp.NodeService.GetApplicationTypeDescription C# (CSharp) Method

GetApplicationTypeDescription() public method

public GetApplicationTypeDescription ( Type serviceApplicationType ) : SPPersistedTypeDescription
serviceApplicationType System.Type
return 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.");
        }