System.Xml.XmlNamespaceManager.NamespaceDeclaration.Set C# (CSharp) Method

Set() public method

public Set ( string prefix, string uri, int scopeId, int previousNsIndex ) : void
prefix string
uri string
scopeId int
previousNsIndex int
return void
            public void Set( string prefix, string uri, int scopeId, int previousNsIndex ) {
                this.prefix = prefix;
                this.uri = uri;
                this.scopeId = scopeId;
                this.previousNsIndex = previousNsIndex;
            }
        }
XmlNamespaceManager.NamespaceDeclaration