Base:
property
Value
Microsoft.Xml.XmlNode.Value
26 writes to Value
dotnet-svcutil-lib (26)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (1)
1774
_namespaceXml.
Value
= strReservedXml;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElement.cs (4)
284
attr.
Value
= value;
289
attr.
Value
= value;
352
attr.
Value
= value;
357
attr.
Value
= value;
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
767
attribute.
Value
= value;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (1)
256
attribute.
Value
= qname.Namespace + ":" + qname.Name + "[]";
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationReader.cs (4)
815
attr.
Value
= _r.LookupNamespace("") + ":" + attr.Value;
819
attr.
Value
= _r.LookupNamespace(attr.Value.Substring(0, colon)) + ":" + attr.Value.Substring(colon + 1);
1984
attr.
Value
= Reader.Value;
2021
xsiTypeAttribute.
Value
= elemName;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransactionFlowBindingElement.cs (2)
301
attr.
Value
= TransactionPolicyStrings.TrueValue;
310
attrLegacy.
Value
= TransactionPolicyStrings.TrueValue;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\SoapHelper.cs (1)
31
attribute.
Value
= value;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (4)
591
attribute.
Value
= actionUri;
817
uriAttribute.
Value
= policyKey;
831
idAttribute.
Value
= key;
1148
newAttribute.
Value
= value;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (5)
1381
attribute.
Value
= newValue;
1405
attribute.
Value
= value;
1435
idAttribute.
Value
= id;
1466
bindingName.
Value
= wsdlBindingQName.Name;
1470
bindingNamespace.
Value
= wsdlBindingQName.Namespace;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\IssuedSecurityTokenParameters.cs (2)
334
attr.
Value
= claimType.ClaimType;
339
attr.
Value
= XmlConvert.ToString(claimType.IsOptional);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustDec2005.cs (1)
103
dialectAttribute.
Value
= DXD.TrustDec2005Dictionary.DialectType.Value;
67 references to Value
dotnet-svcutil-lib (67)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentSchemaValidator.cs (8)
202
dictionary.Add(string.Empty, attr.
Value
);
210
dictionary.Add(attr.LocalName, attr.
Value
);
367
xsiType = attr.
Value
;
371
xsiNil = attr.
Value
;
376
_nsManager.AddNamespace(attr.Prefix.Length == 0 ? string.Empty : attr.LocalName, attr.
Value
);
723
xsiType = attr.
Value
;
727
xsiNil = attr.
Value
;
732
_nsManager.AddNamespace(attr.Prefix.Length == 0 ? string.Empty : attr.LocalName, attr.
Value
);
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (2)
409
return attribute.
Value
;
1852
namespaceManager.AddNamespace(prefix, attribute.
Value
);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttributeCollection.cs (2)
338
parent.OwnerDocument.AddElementWithId(attr.
Value
, parentElem); //add the element into the hashtable
354
parent.OwnerDocument.RemoveElementWithId(attr.
Value
, parentElem); //remove the element from the hashtable
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElement.cs (3)
272
return attr.
Value
;
340
return attr.
Value
;
634
return attr.
Value
;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (9)
713
mgr.AddNamespace(attr.LocalName, attr.
Value
);
718
mgr.AddNamespace(String.Empty, attr.
Value
);
724
if (attr.
Value
== "default")
726
else if (attr.
Value
== "preserve")
732
lang = attr.
Value
;
823
if (attr.
Value
== nsUri)
832
mgr.AddNamespace(attr.LocalName, attr.
Value
);
840
if (attr.
Value
== nsUri)
849
mgr.AddNamespace(attr.LocalName, attr.
Value
);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNode.cs (4)
1089
return attr.
Value
; // found xmlns
1103
return attr.
Value
; // found xmlns:prefix
1172
if (attr.
Value
== namespaceURI)
1180
if (attr.
Value
== namespaceURI)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNodeReader.cs (8)
488
return attr.
Value
;
514
return attr.
Value
;
543
return ((XmlElement)_curNode).Attributes[attributeIndex].
Value
;
546
return ((XmlElement)_elemNode).Attributes[attributeIndex].
Value
;
894
return attr.
Value
;
963
if (a.
Value
== namespaceName)
1017
dict.Add(_nameTable.Add(string.Empty), _nameTable.Add(a.
Value
));
1025
dict.Add(_nameTable.Add(localName), _nameTable.Add(a.
Value
));
FrameworkFork\Microsoft.Xml\Xml\Serialization\ImportContext.cs (1)
532
XmlQualifiedName qname = TypeScope.ParseWsdlArrayType(attribute.
Value
, out dims, item);
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (2)
207
if (a.
Value
!= null)
209
WriteAttribute(a.Name, a.NamespaceURI, a.
Value
);
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaImporter.cs (1)
491
arrayType = a.
Value
;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemas.cs (3)
421
if (a.
Value
== "True" || a.
Value
== "true" || a.
Value
== "1") return true;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationReader.cs (4)
812
int colon = attr.
Value
.LastIndexOf(':');
815
attr.Value = _r.LookupNamespace("") + ":" + attr.
Value
;
819
attr.Value = _r.LookupNamespace(attr.
Value
.Substring(0, colon)) + ":" + attr.
Value
.Substring(colon + 1);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationWriter.cs (3)
936
if (attr.
Value
!= null)
941
XmlQualifiedName qname = TypeScope.ParseWsdlArrayType(attr.
Value
, out dims, (container is XmlSchemaObject) ? (XmlSchemaObject)container : null);
950
WriteAttribute(attr.Name, attr.NamespaceURI, attr.
Value
);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ReliableSessionBindingElementImporter.cs (1)
254
milliseconds = XmlConvert.ToUInt64(millisecondsAttribute.
Value
);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\SoapHelper.cs (2)
394
dest.SetAttribute(attribute.Name, attribute.
Value
);
644
return attribute.
Value
== "encoded";
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (11)
1041
return attribute.
Value
;
1247
if (isInitiating.
Value
== WsdlExporter.NetSessionHelper.True)
1251
if (isInitiating.
Value
== WsdlExporter.NetSessionHelper.False)
1262
if (isTerminating.
Value
== WsdlExporter.NetSessionHelper.True)
1266
if (isTerminating.
Value
== WsdlExporter.NetSessionHelper.False)
1280
if (usingSession.
Value
== WsdlExporter.NetSessionHelper.True)
1284
if (usingSession.
Value
== WsdlExporter.NetSessionHelper.False)
1335
wsdlBindingQName = new XmlQualifiedName(policy.Attributes[bindingAttrName].
Value
, policy.Attributes[bindingAttrNamespace].
Value
);
1418
return attribute.
Value
;
2152
return attribute.
Value
.Split((char[])null, StringSplitOptions.RemoveEmptyEntries);
FrameworkFork\System.Web.Services\Services\Description\ServiceDescription.cs (3)
1748
if (requiredAttr == null || requiredAttr.
Value
== null)
1751
if (requiredAttr == null || requiredAttr.
Value
== null) return false; // not required, by default
1753
return XmlConvert.ToBoolean(requiredAttr.
Value
);