System.Runtime.Serialization.Formatters.Soap.SoapHandler.AttributeValueEntry.AttributeValueEntry C# (CSharp) Method

AttributeValueEntry() private method

private AttributeValueEntry ( String prefix, String key, String value, String urn ) : System
prefix String
key String
value String
urn String
return System
            internal AttributeValueEntry(String prefix, String key, String value, String urn)
            {
                this.prefix = prefix;
                this.key = key;
                this.value = value;
                this.urn = urn;
            }
        }
SoapHandler.AttributeValueEntry