You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
557 B
28 lines
557 B
using System;
|
|
using System.Web;
|
|
using System.IO;
|
|
using System.Xml;
|
|
using System.Xml.Schema;
|
|
using System.Collections;
|
|
using System.Data.SqlClient;
|
|
using System.Xml.Serialization;
|
|
|
|
using Microsoft.Uddi;
|
|
|
|
namespace Microsoft.Uddi.Extensions
|
|
{
|
|
//
|
|
// All Extension namespaces should go in here
|
|
//
|
|
public sealed class Namespaces
|
|
{
|
|
public const string GetRelatedCategories = "urn:uddi-microsoft-com:api_v2_extensions";
|
|
|
|
private Namespaces()
|
|
{
|
|
//
|
|
// Don't let anyone construct an instance of this class
|
|
//
|
|
}
|
|
}
|
|
}
|