DataServiceProvider.DSPMetadata.DSPMetadata C# (CSharp) Method

DSPMetadata() public method

Creates new empty metadata definition.
public DSPMetadata ( string containerName, string namespaceName ) : System
containerName string Name of the container to report.
namespaceName string Namespace name.
return System
        public DSPMetadata(string containerName, string namespaceName)
        {
            this.resourceSets = new Dictionary<string, ResourceSet>();
            this.resourceTypes = new Dictionary<string, ResourceType>();
            this.containerName = containerName;
            this.namespaceName = namespaceName;
        }