task
stringlengths
24
71
input
stringlengths
8
2.38k
output
stringlengths
1
2.34k
options
list
pageTitle
stringlengths
4
140
outputColName
stringlengths
1
79
url
stringlengths
41
160
wdcFile
stringlengths
71
74
95d4e147_crosoft_SqlServer_Dts_Runtime___Name
[Description] Gets a value that indicates whether the current parameter is a required parameter. If this value is true, a value must be assigned before a project or package can be executed. [Name]
Required
[ [ "C", "r", "e", "a", "t", "i", "o", "n", "N", "a", "m", "e" ], [ "D", "a", "t", "a", "T", "y", "p", "e" ], [ "D", "e", "s", "c", "r", "i", "p", "t", "i", "o", "n" ], [ "I", "D" ], [ "I", "n", "c", "l", "u", "d", "e", "I", "n", "D", "e", "b", "u", "g", "D", "u", "m", "p" ], [ "N", "a", "m", "e" ], [ "R", "e", "q", "u", "i", "r", "e", "d" ], [ "S", "e", "n", "s", "i", "t", "i", "v", "e" ], [ "V", "a", "l", "u", "e" ] ]
ParameterInfo Class (Microsoft.SqlServer.Dts.Runtime)
Name
https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.dts.runtime.parameterinfo.aspx
47/1438042986806.32_20150728002306-00270-ip-10-236-191-2_866044786_0.json
95d4e147_crosoft_SqlServer_Dts_Runtime___Name
[Description] Gets a value that indicates whether the current parameter contains a sensitive value. If this value is true, the project or package containing this parameter must be encrypted before saved to any kind of storages. [Name]
Sensitive
[ [ "C", "r", "e", "a", "t", "i", "o", "n", "N", "a", "m", "e" ], [ "D", "a", "t", "a", "T", "y", "p", "e" ], [ "D", "e", "s", "c", "r", "i", "p", "t", "i", "o", "n" ], [ "I", "D" ], [ "I", "n", "c", "l", "u", "d", "e", "I", "n", "D", "e", "b", "u", "g", "D", "u", "m", "p" ], [ "N", "a", "m", "e" ], [ "R", "e", "q", "u", "i", "r", "e", "d" ], [ "S", "e", "n", "s", "i", "t", "i", "v", "e" ], [ "V", "a", "l", "u", "e" ] ]
ParameterInfo Class (Microsoft.SqlServer.Dts.Runtime)
Name
https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.dts.runtime.parameterinfo.aspx
47/1438042986806.32_20150728002306-00270-ip-10-236-191-2_866044786_0.json
95d4e147_crosoft_SqlServer_Dts_Runtime___Name
[Description] Gets the value of the parameter object. [Name]
Value
[ [ "C", "r", "e", "a", "t", "i", "o", "n", "N", "a", "m", "e" ], [ "D", "a", "t", "a", "T", "y", "p", "e" ], [ "D", "e", "s", "c", "r", "i", "p", "t", "i", "o", "n" ], [ "I", "D" ], [ "I", "n", "c", "l", "u", "d", "e", "I", "n", "D", "e", "b", "u", "g", "D", "u", "m", "p" ], [ "N", "a", "m", "e" ], [ "R", "e", "q", "u", "i", "r", "e", "d" ], [ "S", "e", "n", "s", "i", "t", "i", "v", "e" ], [ "V", "a", "l", "u", "e" ] ]
ParameterInfo Class (Microsoft.SqlServer.Dts.Runtime)
Name
https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.dts.runtime.parameterinfo.aspx
47/1438042986806.32_20150728002306-00270-ip-10-236-191-2_866044786_0.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Specifies that Reflection should create an instance of the specified type. Calls the constructor that matches the given arguments. The supplied member name is ignored. If the type of lookup is not specified, (Instance | Public) will apply. It is not possible to call a type initializer. [Value] 512 [Member name]
CreateInstance Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Specifies that only members declared at the level of the supplied type's hierarchy should be considered. Inherited members are not considered. [Value] 2 [Member name]
DeclaredOnly Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Specifies no binding flag. [Value] 0 [Member name]
Default Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Specifies that types of the supplied arguments must exactly match the types of the corresponding formal parameters. Reflection throws an exception if the caller supplies a non-null Binder object, since that implies that the caller is supplying BindToXXX implementations that will pick the appropriate method. Reflection models the accessibility rules of the common type system. For example, if the caller is in the same assembly, the caller does not need special permissions for internal members. Otherwise, the caller needs ReflectionPermission. This is consistent with lookup of members that are protected, private, and so on. The general principle is that ChangeType should perform only widening coercions, which never lose data. An example of a widening coercion is coercing a value that is a 32-bit signed integer to a value that is a 64-bit signed integer. This is distinguished from a narrowing coercion, which may lose data. An example of a narrowing coercion is coercing a 64-bit signed integer to a 32-bit signed integer. The default binder ignores this flag, while custom binders can implement the semantics of this flag. [Value] 65536 [Member name]
ExactBinding Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Specifies that static members up the hierarchy should be returned. Static members include fields, methods, events, and properties. Nested types are not returned. [Value] 64 [Member name]
FlattenHierarchy Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Specifies that the value of the specified field should be returned. [Value] 1024 [Member name]
GetField Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Specifies that the value of the specified property should be returned. [Value] 4096 [Member name]
GetProperty Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Specifies that the case of the member name should not be considered when binding. [Value] 1 [Member name]
IgnoreCase Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Used in COM interop to specify that the return value of the member can be ignored. [Value] 16777216 [Member name]
IgnoreReturn Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Specifies that instance members are to be included in the search. [Value] 4 [Member name]
Instance Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Specifies that a method is to be invoked. This may not be a constructor or a type initializer. [Value] 256 [Member name]
InvokeMethod Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Specifies that non-public members are to be included in the search. [Value] 32 [Member name]
NonPublic Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Returns the set of members whose parameter count matches the number of supplied arguments. This binding flag is used for methods with parameters that have default values and methods with variable arguments (varargs). This flag should only be used with Type.InvokeMember. Parameters with default values are used only in calls where trailing arguments are omitted. They must be the last arguments. [Value] 262144 [Member name]
OptionalParamBinding Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Specifies that public members are to be included in the search. [Value] 16 [Member name]
Public Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Specifies that the PROPPUT member on a COM object should be invoked. PROPPUT specifies a property-setting function that uses a value. Use PutDispProperty if a property has both PROPPUT and PROPPUTREF and you need to distinguish which one is called. [Value] 16384 [Member name]
PutDispProperty Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Specifies that the PROPPUTREF member on a COM object should be invoked. PROPPUTREF specifies a property-setting function that uses a reference instead of a value. Use PutRefDispProperty if a property has both PROPPUT and PROPPUTREF and you need to distinguish which one is called. [Value] 32768 [Member name]
PutRefDispProperty Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Specifies that the value of the specified field should be set. [Value] 2048 [Member name]
SetField Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Specifies that the value of the specified property should be set. For COM properties, specifying this binding flag is equivalent to specifying PutDispProperty and PutRefDispProperty. [Value] 8192 [Member name]
SetProperty Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Specifies that static members are to be included in the search. [Value] 8 [Member name]
Static Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
86d3c7f9_BindingFlags_Enumeration__Member_name
[Description] Not implemented. [Value] 131072 [Member name]
SuppressChangeType Supported by the .NET Compact Framework.
[]
BindingFlags Enumeration
Member name
https://msdn.microsoft.com/en-us/library/system.reflection.bindingflags(v=vs.71).aspx
47/1438042986444.39_20150728002306-00149-ip-10-236-191-2_887355756_2.json
e755b3ce_Filtering_a_Trace__Description
[Relational operator] Like [Operator symbol] LIKE [Description]
Specifies that the trace event data must be like the text entered. Allows multiple values.
[]
Filtering a Trace
Description
https://msdn.microsoft.com/en-us/library/ms175061(v=sql.90).aspx
47/1438042986444.39_20150728002306-00156-ip-10-236-191-2_863464232_1.json
e755b3ce_Filtering_a_Trace__Description
[Relational operator] Not like [Operator symbol] NOT LIKE [Description]
Specifies that the trace event data must not be like the text entered. Allows multiple values.
[]
Filtering a Trace
Description
https://msdn.microsoft.com/en-us/library/ms175061(v=sql.90).aspx
47/1438042986444.39_20150728002306-00156-ip-10-236-191-2_863464232_1.json
e755b3ce_Filtering_a_Trace__Description
[Relational operator] Equals [Operator symbol] = [Description]
Specifies that the trace event data must equal the value entered. Allows multiple values.
[]
Filtering a Trace
Description
https://msdn.microsoft.com/en-us/library/ms175061(v=sql.90).aspx
47/1438042986444.39_20150728002306-00156-ip-10-236-191-2_863464232_1.json
e755b3ce_Filtering_a_Trace__Description
[Relational operator] Not equal to [Operator symbol] <> [Description]
Specifies that the trace event data must not equal the value entered. Allows multiple values.
[]
Filtering a Trace
Description
https://msdn.microsoft.com/en-us/library/ms175061(v=sql.90).aspx
47/1438042986444.39_20150728002306-00156-ip-10-236-191-2_863464232_1.json
e755b3ce_Filtering_a_Trace__Description
[Relational operator] Greater than [Operator symbol] > [Description]
Specifies that the trace event data must be greater than the value entered.
[]
Filtering a Trace
Description
https://msdn.microsoft.com/en-us/library/ms175061(v=sql.90).aspx
47/1438042986444.39_20150728002306-00156-ip-10-236-191-2_863464232_1.json
e755b3ce_Filtering_a_Trace__Description
[Relational operator] Greater than or equal to [Operator symbol] >= [Description]
Specifies that the trace event data must be greater than or equal to the value entered.
[]
Filtering a Trace
Description
https://msdn.microsoft.com/en-us/library/ms175061(v=sql.90).aspx
47/1438042986444.39_20150728002306-00156-ip-10-236-191-2_863464232_1.json
e755b3ce_Filtering_a_Trace__Description
[Relational operator] Less than [Operator symbol] < [Description]
Specifies that the trace event data must be less than the value entered.
[]
Filtering a Trace
Description
https://msdn.microsoft.com/en-us/library/ms175061(v=sql.90).aspx
47/1438042986444.39_20150728002306-00156-ip-10-236-191-2_863464232_1.json
e755b3ce_Filtering_a_Trace__Description
[Relational operator] Less than or equal to [Operator symbol] <= [Description]
Specifies that the trace event data must be less than or equal to the value entered.
[]
Filtering a Trace
Description
https://msdn.microsoft.com/en-us/library/ms175061(v=sql.90).aspx
47/1438042986444.39_20150728002306-00156-ip-10-236-191-2_863464232_1.json
79a7c0f4_llection_Methods__System_Data___Name
[Description] Overloaded. Creates and adds a DataColumn object to the DataColumnCollection. [Name]
Add
[]
DataColumnCollection Methods (System.Data)
Name
https://msdn.microsoft.com/en-us/library/system.data.datacolumncollection_methods(v=vs.80).aspx
47/1438042986444.39_20150728002306-00143-ip-10-236-191-2_876418802_0.json
79a7c0f4_llection_Methods__System_Data___Name
[Description] Copies the elements of the specified DataColumn array to the end of the collection. [Name]
AddRange
[]
DataColumnCollection Methods (System.Data)
Name
https://msdn.microsoft.com/en-us/library/system.data.datacolumncollection_methods(v=vs.80).aspx
47/1438042986444.39_20150728002306-00143-ip-10-236-191-2_876418802_0.json
79a7c0f4_llection_Methods__System_Data___Name
[Description] Checks whether a specific column can be removed from the collection. [Name]
CanRemove
[]
DataColumnCollection Methods (System.Data)
Name
https://msdn.microsoft.com/en-us/library/system.data.datacolumncollection_methods(v=vs.80).aspx
47/1438042986444.39_20150728002306-00143-ip-10-236-191-2_876418802_0.json
79a7c0f4_llection_Methods__System_Data___Name
[Description] Clears the collection of any columns. [Name]
Clear
[]
DataColumnCollection Methods (System.Data)
Name
https://msdn.microsoft.com/en-us/library/system.data.datacolumncollection_methods(v=vs.80).aspx
47/1438042986444.39_20150728002306-00143-ip-10-236-191-2_876418802_0.json
79a7c0f4_llection_Methods__System_Data___Name
[Description] Checks whether the collection contains a column with the specified name. [Name]
Contains
[]
DataColumnCollection Methods (System.Data)
Name
https://msdn.microsoft.com/en-us/library/system.data.datacolumncollection_methods(v=vs.80).aspx
47/1438042986444.39_20150728002306-00143-ip-10-236-191-2_876418802_0.json
79a7c0f4_llection_Methods__System_Data___Name
[Description] Overloaded. Copies the collection to an array, starting at the specified index. [Name]
CopyTo
[]
DataColumnCollection Methods (System.Data)
Name
https://msdn.microsoft.com/en-us/library/system.data.datacolumncollection_methods(v=vs.80).aspx
47/1438042986444.39_20150728002306-00143-ip-10-236-191-2_876418802_0.json
79a7c0f4_llection_Methods__System_Data___Name
[Description] Overloaded. Determines whether two Object instances are equal. (Inherited from Object.) [Name]
Equals
[]
DataColumnCollection Methods (System.Data)
Name
https://msdn.microsoft.com/en-us/library/system.data.datacolumncollection_methods(v=vs.80).aspx
47/1438042986444.39_20150728002306-00143-ip-10-236-191-2_876418802_0.json
79a7c0f4_llection_Methods__System_Data___Name
[Description] Gets an IEnumerator for the collection. (Inherited from InternalDataCollectionBase.) [Name]
GetEnumerator
[]
DataColumnCollection Methods (System.Data)
Name
https://msdn.microsoft.com/en-us/library/system.data.datacolumncollection_methods(v=vs.80).aspx
47/1438042986444.39_20150728002306-00143-ip-10-236-191-2_876418802_0.json
79a7c0f4_llection_Methods__System_Data___Name
[Description] Serves as a hash function for a particular type. GetHashCode is suitable for use in hashing algorithms and data structures like a hash table. (Inherited from Object.) [Name]
GetHashCode
[]
DataColumnCollection Methods (System.Data)
Name
https://msdn.microsoft.com/en-us/library/system.data.datacolumncollection_methods(v=vs.80).aspx
47/1438042986444.39_20150728002306-00143-ip-10-236-191-2_876418802_0.json
79a7c0f4_llection_Methods__System_Data___Name
[Description] Gets the Type of the current instance. (Inherited from Object.) [Name]
GetType
[]
DataColumnCollection Methods (System.Data)
Name
https://msdn.microsoft.com/en-us/library/system.data.datacolumncollection_methods(v=vs.80).aspx
47/1438042986444.39_20150728002306-00143-ip-10-236-191-2_876418802_0.json
79a7c0f4_llection_Methods__System_Data___Name
[Description] Overloaded. Searches for the specified DataColumn and returns the zero-based index of the first occurrence within the collection. [Name]
IndexOf
[]
DataColumnCollection Methods (System.Data)
Name
https://msdn.microsoft.com/en-us/library/system.data.datacolumncollection_methods(v=vs.80).aspx
47/1438042986444.39_20150728002306-00143-ip-10-236-191-2_876418802_0.json
79a7c0f4_llection_Methods__System_Data___Name
[Description] Determines whether the specified Object instances are the same instance. (Inherited from Object.) [Name]
ReferenceEquals
[]
DataColumnCollection Methods (System.Data)
Name
https://msdn.microsoft.com/en-us/library/system.data.datacolumncollection_methods(v=vs.80).aspx
47/1438042986444.39_20150728002306-00143-ip-10-236-191-2_876418802_0.json
79a7c0f4_llection_Methods__System_Data___Name
[Description] Overloaded. Removes a DataColumn object from the collection. [Name]
Remove
[]
DataColumnCollection Methods (System.Data)
Name
https://msdn.microsoft.com/en-us/library/system.data.datacolumncollection_methods(v=vs.80).aspx
47/1438042986444.39_20150728002306-00143-ip-10-236-191-2_876418802_0.json
79a7c0f4_llection_Methods__System_Data___Name
[Description] Removes the column at the specified index from the collection. [Name]
RemoveAt
[]
DataColumnCollection Methods (System.Data)
Name
https://msdn.microsoft.com/en-us/library/system.data.datacolumncollection_methods(v=vs.80).aspx
47/1438042986444.39_20150728002306-00143-ip-10-236-191-2_876418802_0.json
79a7c0f4_llection_Methods__System_Data___Name
[Description] Returns a String that represents the current Object. (Inherited from Object.) [Name]
ToString
[]
DataColumnCollection Methods (System.Data)
Name
https://msdn.microsoft.com/en-us/library/system.data.datacolumncollection_methods(v=vs.80).aspx
47/1438042986444.39_20150728002306-00143-ip-10-236-191-2_876418802_0.json
03db5491_ocument_Control_Type__Windows___UI_Automation_Property
[Value] See notes. [Notes] The value of this property must be unique among all peer elements in the raw view of the UI Automation tree. [UI Automation Property]
UIA_AutomationIdPropertyId
[]
Document Control Type (Windows)
UI Automation Property
https://msdn.microsoft.com/en-us/library/windows/apps/ee671625
47/1438042987034.19_20150728002307-00338-ip-10-236-191-2_892976634_1.json
03db5491_ocument_Control_Type__Windows___UI_Automation_Property
[Value] See notes. [Notes] The outermost rectangle that contains the whole control. [UI Automation Property]
UIA_BoundingRectanglePropertyId
[]
Document Control Type (Windows)
UI Automation Property
https://msdn.microsoft.com/en-us/library/windows/apps/ee671625
47/1438042987034.19_20150728002307-00338-ip-10-236-191-2_892976634_1.json
03db5491_ocument_Control_Type__Windows___UI_Automation_Property
[Value] See notes. [Notes] The document has a clickable point that will cause the document of one of its elements in the document container to have focus. [UI Automation Property]
UIA_ClickablePointPropertyId
[]
Document Control Type (Windows)
UI Automation Property
https://msdn.microsoft.com/en-us/library/windows/apps/ee671625
47/1438042987034.19_20150728002307-00338-ip-10-236-191-2_892976634_1.json
03db5491_ocument_Control_Type__Windows___UI_Automation_Property
[Value] Document [UI Automation Property]
UIA_ControlTypePropertyId
[]
Document Control Type (Windows)
UI Automation Property
https://msdn.microsoft.com/en-us/library/windows/apps/ee671625
47/1438042987034.19_20150728002307-00338-ip-10-236-191-2_892976634_1.json
03db5491_ocument_Control_Type__Windows___UI_Automation_Property
[Value] TRUE [Notes] The document control is always included in the content view of the UI Automation tree. [UI Automation Property]
UIA_IsContentElementPropertyId
[]
Document Control Type (Windows)
UI Automation Property
https://msdn.microsoft.com/en-us/library/windows/apps/ee671625
47/1438042987034.19_20150728002307-00338-ip-10-236-191-2_892976634_1.json
03db5491_ocument_Control_Type__Windows___UI_Automation_Property
[Value] TRUE [Notes] The document control is always included in the control view of the UI Automation tree. [UI Automation Property]
UIA_IsControlElementPropertyId
[]
Document Control Type (Windows)
UI Automation Property
https://msdn.microsoft.com/en-us/library/windows/apps/ee671625
47/1438042987034.19_20150728002307-00338-ip-10-236-191-2_892976634_1.json
03db5491_ocument_Control_Type__Windows___UI_Automation_Property
[Value] See notes. [Notes] If the control can receive keyboard focus, it must support this property. [UI Automation Property]
UIA_IsKeyboardFocusablePropertyId
[]
Document Control Type (Windows)
UI Automation Property
https://msdn.microsoft.com/en-us/library/windows/apps/ee671625
47/1438042987034.19_20150728002307-00338-ip-10-236-191-2_892976634_1.json
03db5491_ocument_Control_Type__Windows___UI_Automation_Property
[Value] See notes. [Notes] The value of this property should be the label of the document control. Typically, the title of the document is used. [UI Automation Property]
UIA_LabeledByPropertyId
[]
Document Control Type (Windows)
UI Automation Property
https://msdn.microsoft.com/en-us/library/windows/apps/ee671625
47/1438042987034.19_20150728002307-00338-ip-10-236-191-2_892976634_1.json
03db5491_ocument_Control_Type__Windows___UI_Automation_Property
[Value] See notes. [Notes] Localized string corresponding to the Document control type. The default value is "document" for en-US or English (United States). [UI Automation Property]
UIA_LocalizedControlTypePropertyId
[]
Document Control Type (Windows)
UI Automation Property
https://msdn.microsoft.com/en-us/library/windows/apps/ee671625
47/1438042987034.19_20150728002307-00338-ip-10-236-191-2_892976634_1.json
03db5491_ocument_Control_Type__Windows___UI_Automation_Property
[Value] See notes. [Notes] The document control typically gets its name from the file name it is loaded from. This is often displayed in a containing window or frame title. [UI Automation Property]
UIA_NamePropertyId
[]
Document Control Type (Windows)
UI Automation Property
https://msdn.microsoft.com/en-us/library/windows/apps/ee671625
47/1438042987034.19_20150728002307-00338-ip-10-236-191-2_892976634_1.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] Clone [Description]
Creates a copy of the current ContainerRandomAccessIterator object.
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] container [Description]
Gets the container that the iterator is traversing.
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] distance(ContainerRandomAccessIterator) [Description]
Determines the distance between the element that the current iterator is pointing to and the element that the given iterator is pointing to.
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] distance(IRandomAccessIterator) [Description]
Determines the distance between the element that the current iterator is pointing to and the element that the given iterator is pointing to.
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] equal_to(ContainerRandomAccessIterator) [Description]
Determines whether the given ContainerRandomAccessIterator object is the same as the current ContainerRandomAccessIterator object.
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] equal_to(IInputIterator) [Description]
Determines whether the given IInputIterator object is the same as the current ContainerRandomAccessIterator object.
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] Equals(Object) [Description]
Determines whether the specified object is equal to the current object. (Inherited from Object.)
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] Finalize [Description]
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] get_bias [Description]
Gets the bias of the iterator. The bias is the offset of the iterator from element zero.
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] get_cref [Description]
Returns a constant reference to the element that the iterator is currently pointing to.
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] get_node [Description]
Gets the node, or element, that the iterator is pointing to.
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] get_ref [Description]
Returns a reference to the element that the iterator is currently pointing to.
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] GetHashCode [Description]
Serves as the default hash function. (Inherited from Object.)
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] GetType [Description]
Gets the Type of the current instance. (Inherited from Object.)
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] less_than(ContainerRandomAccessIterator) [Description]
Determines whether the current iterator is pointing to an element in the container that is before the element that the given iterator points to.
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] less_than(IRandomAccessIterator) [Description]
Determines whether the current iterator is pointing to an element in the container that is before the element that the given iterator points to.
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] MemberwiseClone [Description]
Creates a shallow copy of the current Object. (Inherited from Object.)
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] move [Description]
Moves the iterator by the given number of elements.
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] next [Description]
Increments the iterator to the next position in the underlying container, or to the first position beyond the end of container if the container has been completely traversed.
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] prev [Description]
Positions the iterator to the element immediately before the current element.
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] ToString [Description]
Returns a string that represents the current object. (Inherited from Object.)
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
f5ac358b_rosoft_VisualC_StlClr_Generic___Description
[Name] valid [Description]
Determines whether the iterator is valid and can be safely used to traverse the underlying container.
[]
ContainerRandomAccessIterator(TValue) Methods (Microsoft.VisualC.StlClr.Generic)
Description
https://msdn.microsoft.com/en-us/library/bb358480.aspx
47/1438042986806.32_20150728002306-00322-ip-10-236-191-2_875048886_0.json
651e9bbf_olean___System_IO_Compression___Exception
[Condition] sourceDirectoryName or destinationArchiveFileName is Empty, contains only white space, or contains at least one invalid character. [Exception]
ArgumentException
[]
ZipFile.CreateFromDirectory Method (String, String, CompressionLevel, Boolean) (System.IO.Compression)
Exception
https://msdn.microsoft.com/en-us/library/hh485721
47/1438042986806.32_20150728002306-00056-ip-10-236-191-2_868882274_0.json
651e9bbf_olean___System_IO_Compression___Exception
[Condition] sourceDirectoryName or destinationArchiveFileName is null. [Exception]
ArgumentNullException
[]
ZipFile.CreateFromDirectory Method (String, String, CompressionLevel, Boolean) (System.IO.Compression)
Exception
https://msdn.microsoft.com/en-us/library/hh485721
47/1438042986806.32_20150728002306-00056-ip-10-236-191-2_868882274_0.json
651e9bbf_olean___System_IO_Compression___Exception
[Condition] In sourceDirectoryName or destinationArchiveFileName, the specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must not exceed 248 characters, and file names must not exceed 260 characters. [Exception]
PathTooLongException
[]
ZipFile.CreateFromDirectory Method (String, String, CompressionLevel, Boolean) (System.IO.Compression)
Exception
https://msdn.microsoft.com/en-us/library/hh485721
47/1438042986806.32_20150728002306-00056-ip-10-236-191-2_868882274_0.json
651e9bbf_olean___System_IO_Compression___Exception
[Condition] sourceDirectoryName is invalid or does not exist (for example, it is on an unmapped drive). [Exception]
DirectoryNotFoundException
[]
ZipFile.CreateFromDirectory Method (String, String, CompressionLevel, Boolean) (System.IO.Compression)
Exception
https://msdn.microsoft.com/en-us/library/hh485721
47/1438042986806.32_20150728002306-00056-ip-10-236-191-2_868882274_0.json
651e9bbf_olean___System_IO_Compression___Exception
[Condition] destinationArchiveFileName already exists. -or- A file in the specified directory could not be opened. [Exception]
IOException
[]
ZipFile.CreateFromDirectory Method (String, String, CompressionLevel, Boolean) (System.IO.Compression)
Exception
https://msdn.microsoft.com/en-us/library/hh485721
47/1438042986806.32_20150728002306-00056-ip-10-236-191-2_868882274_0.json
651e9bbf_olean___System_IO_Compression___Exception
[Condition] destinationArchiveFileName specifies a directory. -or- The caller does not have the required permission to access the directory specified in sourceDirectoryName or the file specified in destinationArchiveFileName. [Exception]
UnauthorizedAccessException
[]
ZipFile.CreateFromDirectory Method (String, String, CompressionLevel, Boolean) (System.IO.Compression)
Exception
https://msdn.microsoft.com/en-us/library/hh485721
47/1438042986806.32_20150728002306-00056-ip-10-236-191-2_868882274_0.json
651e9bbf_olean___System_IO_Compression___Exception
[Condition] sourceDirectoryName or destinationArchiveFileName contains an invalid format. -or- The zip archive does not support writing. [Exception]
NotSupportedException
[]
ZipFile.CreateFromDirectory Method (String, String, CompressionLevel, Boolean) (System.IO.Compression)
Exception
https://msdn.microsoft.com/en-us/library/hh485721
47/1438042986806.32_20150728002306-00056-ip-10-236-191-2_868882274_0.json
0b5d0cde_der_Class__System_Data_Common___Description
[Name] ICollection.CopyTo [Description]
Copies the elements of the ICollection to an Array, starting at a particular Array index.
[]
DbConnectionStringBuilder Class (System.Data.Common)
Description
https://msdn.microsoft.com/en-us/library/efk29f3z
47/1438042987034.19_20150728002307-00008-ip-10-236-191-2_886989236_4.json
0b5d0cde_der_Class__System_Data_Common___Description
[Name] ICollection.IsSynchronized [Description]
Gets a value indicating whether access to the ICollection is synchronized (thread safe).
[]
DbConnectionStringBuilder Class (System.Data.Common)
Description
https://msdn.microsoft.com/en-us/library/efk29f3z
47/1438042987034.19_20150728002307-00008-ip-10-236-191-2_886989236_4.json
0b5d0cde_der_Class__System_Data_Common___Description
[Name] ICollection.SyncRoot [Description]
Gets an object that can be used to synchronize access to the ICollection.
[]
DbConnectionStringBuilder Class (System.Data.Common)
Description
https://msdn.microsoft.com/en-us/library/efk29f3z
47/1438042987034.19_20150728002307-00008-ip-10-236-191-2_886989236_4.json
0b5d0cde_der_Class__System_Data_Common___Description
[Name] ICustomTypeDescriptor.GetAttributes [Description]
Returns a collection of custom attributes for this instance of a component.
[]
DbConnectionStringBuilder Class (System.Data.Common)
Description
https://msdn.microsoft.com/en-us/library/efk29f3z
47/1438042987034.19_20150728002307-00008-ip-10-236-191-2_886989236_4.json
0b5d0cde_der_Class__System_Data_Common___Description
[Name] ICustomTypeDescriptor.GetClassName [Description]
Returns the class name of this instance of a component.
[]
DbConnectionStringBuilder Class (System.Data.Common)
Description
https://msdn.microsoft.com/en-us/library/efk29f3z
47/1438042987034.19_20150728002307-00008-ip-10-236-191-2_886989236_4.json
0b5d0cde_der_Class__System_Data_Common___Description
[Name] ICustomTypeDescriptor.GetComponentName [Description]
Returns the name of this instance of a component.
[]
DbConnectionStringBuilder Class (System.Data.Common)
Description
https://msdn.microsoft.com/en-us/library/efk29f3z
47/1438042987034.19_20150728002307-00008-ip-10-236-191-2_886989236_4.json
0b5d0cde_der_Class__System_Data_Common___Description
[Name] ICustomTypeDescriptor.GetConverter [Description]
Returns a type converter for this instance of a component.
[]
DbConnectionStringBuilder Class (System.Data.Common)
Description
https://msdn.microsoft.com/en-us/library/efk29f3z
47/1438042987034.19_20150728002307-00008-ip-10-236-191-2_886989236_4.json
0b5d0cde_der_Class__System_Data_Common___Description
[Name] ICustomTypeDescriptor.GetDefaultEvent [Description]
Returns the default event for this instance of a component.
[]
DbConnectionStringBuilder Class (System.Data.Common)
Description
https://msdn.microsoft.com/en-us/library/efk29f3z
47/1438042987034.19_20150728002307-00008-ip-10-236-191-2_886989236_4.json
0b5d0cde_der_Class__System_Data_Common___Description
[Name] ICustomTypeDescriptor.GetDefaultProperty [Description]
Returns the default property for this instance of a component.
[]
DbConnectionStringBuilder Class (System.Data.Common)
Description
https://msdn.microsoft.com/en-us/library/efk29f3z
47/1438042987034.19_20150728002307-00008-ip-10-236-191-2_886989236_4.json
0b5d0cde_der_Class__System_Data_Common___Description
[Name] ICustomTypeDescriptor.GetEditor [Description]
Returns an editor of the specified type for this instance of a component.
[]
DbConnectionStringBuilder Class (System.Data.Common)
Description
https://msdn.microsoft.com/en-us/library/efk29f3z
47/1438042987034.19_20150728002307-00008-ip-10-236-191-2_886989236_4.json
0b5d0cde_der_Class__System_Data_Common___Description
[Name] ICustomTypeDescriptor.GetEvents() [Description]
Returns the events for this instance of a component.
[]
DbConnectionStringBuilder Class (System.Data.Common)
Description
https://msdn.microsoft.com/en-us/library/efk29f3z
47/1438042987034.19_20150728002307-00008-ip-10-236-191-2_886989236_4.json
0b5d0cde_der_Class__System_Data_Common___Description
[Name] ICustomTypeDescriptor.GetEvents(Attribute[]) [Description]
Returns the events for this instance of a component using the specified attribute array as a filter.
[]
DbConnectionStringBuilder Class (System.Data.Common)
Description
https://msdn.microsoft.com/en-us/library/efk29f3z
47/1438042987034.19_20150728002307-00008-ip-10-236-191-2_886989236_4.json
0b5d0cde_der_Class__System_Data_Common___Description
[Name] ICustomTypeDescriptor.GetProperties() [Description]
Returns the properties for this instance of a component.
[]
DbConnectionStringBuilder Class (System.Data.Common)
Description
https://msdn.microsoft.com/en-us/library/efk29f3z
47/1438042987034.19_20150728002307-00008-ip-10-236-191-2_886989236_4.json
0b5d0cde_der_Class__System_Data_Common___Description
[Name] ICustomTypeDescriptor.GetProperties(Attribute[]) [Description]
Returns the properties for this instance of a component using the attribute array as a filter.
[]
DbConnectionStringBuilder Class (System.Data.Common)
Description
https://msdn.microsoft.com/en-us/library/efk29f3z
47/1438042987034.19_20150728002307-00008-ip-10-236-191-2_886989236_4.json
0b5d0cde_der_Class__System_Data_Common___Description
[Name] ICustomTypeDescriptor.GetPropertyOwner [Description]
Returns an object that contains the property described by the specified property descriptor.
[]
DbConnectionStringBuilder Class (System.Data.Common)
Description
https://msdn.microsoft.com/en-us/library/efk29f3z
47/1438042987034.19_20150728002307-00008-ip-10-236-191-2_886989236_4.json