Migrating to docfx
This commit is contained in:
parent
affd2899cf
commit
bc4c63a7cd
646 changed files with 86228 additions and 27821 deletions
884
Docs/api/CapyKit.Helpers.ValidCharacterCollection.yml
Normal file
884
Docs/api/CapyKit.Helpers.ValidCharacterCollection.yml
Normal file
|
|
@ -0,0 +1,884 @@
|
|||
### YamlMime:ManagedReference
|
||||
items:
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection
|
||||
commentId: T:CapyKit.Helpers.ValidCharacterCollection
|
||||
id: ValidCharacterCollection
|
||||
parent: CapyKit.Helpers
|
||||
children:
|
||||
- CapyKit.Helpers.ValidCharacterCollection.Lowercase
|
||||
- CapyKit.Helpers.ValidCharacterCollection.Numbers
|
||||
- CapyKit.Helpers.ValidCharacterCollection.Special
|
||||
- CapyKit.Helpers.ValidCharacterCollection.Uppercase
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: ValidCharacterCollection
|
||||
nameWithType: ValidCharacterCollection
|
||||
fullName: CapyKit.Helpers.ValidCharacterCollection
|
||||
type: Enum
|
||||
source:
|
||||
remote:
|
||||
path: CapyKit/Helpers/SecurityHelper.cs
|
||||
branch: main
|
||||
repo: https://git.jordanwages.com/wagesj45/CapyKit.git
|
||||
id: ValidCharacterCollection
|
||||
path: ../CapyKit/Helpers/SecurityHelper.cs
|
||||
startLine: 374
|
||||
assemblies:
|
||||
- CapyKit
|
||||
namespace: CapyKit.Helpers
|
||||
summary: An enumeration that defines the types of characters that can be included in a random string.
|
||||
example: []
|
||||
syntax:
|
||||
content: public enum ValidCharacterCollection
|
||||
content.vb: Public Enum ValidCharacterCollection
|
||||
extensionMethods:
|
||||
- CapyKit.Helpers.ValidCharacterCollection.CapyKit.Extensions.EnumerationExtensions.Parse``1(System.String)
|
||||
- CapyKit.Helpers.ValidCharacterCollection.CapyKit.Extensions.EnumerationExtensions.Parse``1(System.String,System.Boolean)
|
||||
- CapyKit.Helpers.ValidCharacterCollection.CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(CapyKit.Helpers.ValidCharacterCollection)
|
||||
- System.Enum.CapyKit.Extensions.EnumerationExtensions.GetDescription
|
||||
- System.Enum.CapyKit.Extensions.EnumerationExtensions.GetName
|
||||
- System.Enum.CapyKit.Extensions.EnumerationExtensions.GetPrettyName
|
||||
- System.Enum.CapyKit.Extensions.EnumerationExtensions.GetValue
|
||||
- System.Object.CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object)
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection.Lowercase
|
||||
commentId: F:CapyKit.Helpers.ValidCharacterCollection.Lowercase
|
||||
id: Lowercase
|
||||
parent: CapyKit.Helpers.ValidCharacterCollection
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Lowercase
|
||||
nameWithType: ValidCharacterCollection.Lowercase
|
||||
fullName: CapyKit.Helpers.ValidCharacterCollection.Lowercase
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: CapyKit/Helpers/SecurityHelper.cs
|
||||
branch: main
|
||||
repo: https://git.jordanwages.com/wagesj45/CapyKit.git
|
||||
id: Lowercase
|
||||
path: ../CapyKit/Helpers/SecurityHelper.cs
|
||||
startLine: 379
|
||||
assemblies:
|
||||
- CapyKit
|
||||
namespace: CapyKit.Helpers
|
||||
summary: Indicates that lower case characters should be included in the random string.
|
||||
example: []
|
||||
syntax:
|
||||
content: >-
|
||||
[EnumerationDescription("abcdefghijklmnopqrstuvwxyz")]
|
||||
|
||||
Lowercase = 0
|
||||
return:
|
||||
type: CapyKit.Helpers.ValidCharacterCollection
|
||||
content.vb: >-
|
||||
<EnumerationDescription("abcdefghijklmnopqrstuvwxyz")>
|
||||
|
||||
Lowercase = 0
|
||||
attributes:
|
||||
- type: CapyKit.Attributes.EnumerationDescriptionAttribute
|
||||
ctor: CapyKit.Attributes.EnumerationDescriptionAttribute.#ctor(System.String)
|
||||
arguments:
|
||||
- type: System.String
|
||||
value: abcdefghijklmnopqrstuvwxyz
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection.Uppercase
|
||||
commentId: F:CapyKit.Helpers.ValidCharacterCollection.Uppercase
|
||||
id: Uppercase
|
||||
parent: CapyKit.Helpers.ValidCharacterCollection
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Uppercase
|
||||
nameWithType: ValidCharacterCollection.Uppercase
|
||||
fullName: CapyKit.Helpers.ValidCharacterCollection.Uppercase
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: CapyKit/Helpers/SecurityHelper.cs
|
||||
branch: main
|
||||
repo: https://git.jordanwages.com/wagesj45/CapyKit.git
|
||||
id: Uppercase
|
||||
path: ../CapyKit/Helpers/SecurityHelper.cs
|
||||
startLine: 384
|
||||
assemblies:
|
||||
- CapyKit
|
||||
namespace: CapyKit.Helpers
|
||||
summary: Indicates that upper case characters should be included in the random string.
|
||||
example: []
|
||||
syntax:
|
||||
content: >-
|
||||
[EnumerationDescription("ABCDEFGHIJKLMNOPQRSTUVWXYZ")]
|
||||
|
||||
Uppercase = 1
|
||||
return:
|
||||
type: CapyKit.Helpers.ValidCharacterCollection
|
||||
content.vb: >-
|
||||
<EnumerationDescription("ABCDEFGHIJKLMNOPQRSTUVWXYZ")>
|
||||
|
||||
Uppercase = 1
|
||||
attributes:
|
||||
- type: CapyKit.Attributes.EnumerationDescriptionAttribute
|
||||
ctor: CapyKit.Attributes.EnumerationDescriptionAttribute.#ctor(System.String)
|
||||
arguments:
|
||||
- type: System.String
|
||||
value: ABCDEFGHIJKLMNOPQRSTUVWXYZ
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection.Numbers
|
||||
commentId: F:CapyKit.Helpers.ValidCharacterCollection.Numbers
|
||||
id: Numbers
|
||||
parent: CapyKit.Helpers.ValidCharacterCollection
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Numbers
|
||||
nameWithType: ValidCharacterCollection.Numbers
|
||||
fullName: CapyKit.Helpers.ValidCharacterCollection.Numbers
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: CapyKit/Helpers/SecurityHelper.cs
|
||||
branch: main
|
||||
repo: https://git.jordanwages.com/wagesj45/CapyKit.git
|
||||
id: Numbers
|
||||
path: ../CapyKit/Helpers/SecurityHelper.cs
|
||||
startLine: 389
|
||||
assemblies:
|
||||
- CapyKit
|
||||
namespace: CapyKit.Helpers
|
||||
summary: Indicates that numeric characters should be included in the random string.
|
||||
example: []
|
||||
syntax:
|
||||
content: >-
|
||||
[EnumerationDescription("0123456789")]
|
||||
|
||||
Numbers = 2
|
||||
return:
|
||||
type: CapyKit.Helpers.ValidCharacterCollection
|
||||
content.vb: >-
|
||||
<EnumerationDescription("0123456789")>
|
||||
|
||||
Numbers = 2
|
||||
attributes:
|
||||
- type: CapyKit.Attributes.EnumerationDescriptionAttribute
|
||||
ctor: CapyKit.Attributes.EnumerationDescriptionAttribute.#ctor(System.String)
|
||||
arguments:
|
||||
- type: System.String
|
||||
value: "0123456789"
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection.Special
|
||||
commentId: F:CapyKit.Helpers.ValidCharacterCollection.Special
|
||||
id: Special
|
||||
parent: CapyKit.Helpers.ValidCharacterCollection
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Special
|
||||
nameWithType: ValidCharacterCollection.Special
|
||||
fullName: CapyKit.Helpers.ValidCharacterCollection.Special
|
||||
type: Field
|
||||
source:
|
||||
remote:
|
||||
path: CapyKit/Helpers/SecurityHelper.cs
|
||||
branch: main
|
||||
repo: https://git.jordanwages.com/wagesj45/CapyKit.git
|
||||
id: Special
|
||||
path: ../CapyKit/Helpers/SecurityHelper.cs
|
||||
startLine: 394
|
||||
assemblies:
|
||||
- CapyKit
|
||||
namespace: CapyKit.Helpers
|
||||
summary: Indicates that special characters should be included in the random string.
|
||||
example: []
|
||||
syntax:
|
||||
content: >-
|
||||
[EnumerationDescription("!@#$%&?+-_")]
|
||||
|
||||
Special = 3
|
||||
return:
|
||||
type: CapyKit.Helpers.ValidCharacterCollection
|
||||
content.vb: >-
|
||||
<EnumerationDescription("!@#$%&?+-_")>
|
||||
|
||||
Special = 3
|
||||
attributes:
|
||||
- type: CapyKit.Attributes.EnumerationDescriptionAttribute
|
||||
ctor: CapyKit.Attributes.EnumerationDescriptionAttribute.#ctor(System.String)
|
||||
arguments:
|
||||
- type: System.String
|
||||
value: '!@#$%&?+-_'
|
||||
references:
|
||||
- uid: CapyKit.Helpers
|
||||
commentId: N:CapyKit.Helpers
|
||||
href: CapyKit.html
|
||||
name: CapyKit.Helpers
|
||||
nameWithType: CapyKit.Helpers
|
||||
fullName: CapyKit.Helpers
|
||||
spec.csharp:
|
||||
- uid: CapyKit
|
||||
name: CapyKit
|
||||
href: CapyKit.html
|
||||
- name: .
|
||||
- uid: CapyKit.Helpers
|
||||
name: Helpers
|
||||
href: CapyKit.Helpers.html
|
||||
spec.vb:
|
||||
- uid: CapyKit
|
||||
name: CapyKit
|
||||
href: CapyKit.html
|
||||
- name: .
|
||||
- uid: CapyKit.Helpers
|
||||
name: Helpers
|
||||
href: CapyKit.Helpers.html
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection.CapyKit.Extensions.EnumerationExtensions.Parse``1(System.String)
|
||||
commentId: M:CapyKit.Extensions.EnumerationExtensions.Parse``1(``0,System.String)
|
||||
parent: CapyKit.Extensions.EnumerationExtensions
|
||||
definition: CapyKit.Extensions.EnumerationExtensions.Parse``1(``0,System.String)
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_Parse__1___0_System_String_
|
||||
name: Parse<ValidCharacterCollection>(ValidCharacterCollection, string)
|
||||
nameWithType: EnumerationExtensions.Parse<ValidCharacterCollection>(ValidCharacterCollection, string)
|
||||
fullName: CapyKit.Extensions.EnumerationExtensions.Parse<CapyKit.Helpers.ValidCharacterCollection>(CapyKit.Helpers.ValidCharacterCollection, string)
|
||||
nameWithType.vb: EnumerationExtensions.Parse(Of ValidCharacterCollection)(ValidCharacterCollection, String)
|
||||
fullName.vb: CapyKit.Extensions.EnumerationExtensions.Parse(Of CapyKit.Helpers.ValidCharacterCollection)(CapyKit.Helpers.ValidCharacterCollection, String)
|
||||
name.vb: Parse(Of ValidCharacterCollection)(ValidCharacterCollection, String)
|
||||
spec.csharp:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.Parse``1(CapyKit.Helpers.ValidCharacterCollection,System.String)
|
||||
name: Parse
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_Parse__1___0_System_String_
|
||||
- name: <
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection
|
||||
name: ValidCharacterCollection
|
||||
href: CapyKit.Helpers.ValidCharacterCollection.html
|
||||
- name: '>'
|
||||
- name: (
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection
|
||||
name: ValidCharacterCollection
|
||||
href: CapyKit.Helpers.ValidCharacterCollection.html
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.String
|
||||
name: string
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.string
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.Parse``1(CapyKit.Helpers.ValidCharacterCollection,System.String)
|
||||
name: Parse
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_Parse__1___0_System_String_
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection
|
||||
name: ValidCharacterCollection
|
||||
href: CapyKit.Helpers.ValidCharacterCollection.html
|
||||
- name: )
|
||||
- name: (
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection
|
||||
name: ValidCharacterCollection
|
||||
href: CapyKit.Helpers.ValidCharacterCollection.html
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.String
|
||||
name: String
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.string
|
||||
- name: )
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection.CapyKit.Extensions.EnumerationExtensions.Parse``1(System.String,System.Boolean)
|
||||
commentId: M:CapyKit.Extensions.EnumerationExtensions.Parse``1(``0,System.String,System.Boolean)
|
||||
parent: CapyKit.Extensions.EnumerationExtensions
|
||||
definition: CapyKit.Extensions.EnumerationExtensions.Parse``1(``0,System.String,System.Boolean)
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_Parse__1___0_System_String_System_Boolean_
|
||||
name: Parse<ValidCharacterCollection>(ValidCharacterCollection, string, bool)
|
||||
nameWithType: EnumerationExtensions.Parse<ValidCharacterCollection>(ValidCharacterCollection, string, bool)
|
||||
fullName: CapyKit.Extensions.EnumerationExtensions.Parse<CapyKit.Helpers.ValidCharacterCollection>(CapyKit.Helpers.ValidCharacterCollection, string, bool)
|
||||
nameWithType.vb: EnumerationExtensions.Parse(Of ValidCharacterCollection)(ValidCharacterCollection, String, Boolean)
|
||||
fullName.vb: CapyKit.Extensions.EnumerationExtensions.Parse(Of CapyKit.Helpers.ValidCharacterCollection)(CapyKit.Helpers.ValidCharacterCollection, String, Boolean)
|
||||
name.vb: Parse(Of ValidCharacterCollection)(ValidCharacterCollection, String, Boolean)
|
||||
spec.csharp:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.Parse``1(CapyKit.Helpers.ValidCharacterCollection,System.String,System.Boolean)
|
||||
name: Parse
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_Parse__1___0_System_String_System_Boolean_
|
||||
- name: <
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection
|
||||
name: ValidCharacterCollection
|
||||
href: CapyKit.Helpers.ValidCharacterCollection.html
|
||||
- name: '>'
|
||||
- name: (
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection
|
||||
name: ValidCharacterCollection
|
||||
href: CapyKit.Helpers.ValidCharacterCollection.html
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.String
|
||||
name: string
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.string
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Boolean
|
||||
name: bool
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.Parse``1(CapyKit.Helpers.ValidCharacterCollection,System.String,System.Boolean)
|
||||
name: Parse
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_Parse__1___0_System_String_System_Boolean_
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection
|
||||
name: ValidCharacterCollection
|
||||
href: CapyKit.Helpers.ValidCharacterCollection.html
|
||||
- name: )
|
||||
- name: (
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection
|
||||
name: ValidCharacterCollection
|
||||
href: CapyKit.Helpers.ValidCharacterCollection.html
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.String
|
||||
name: String
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.string
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Boolean
|
||||
name: Boolean
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||||
- name: )
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection.CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(CapyKit.Helpers.ValidCharacterCollection)
|
||||
commentId: M:CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(``0,``0)
|
||||
parent: CapyKit.Extensions.ObjectExtensions
|
||||
definition: CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(``0,``0)
|
||||
href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties__1___0___0_
|
||||
name: UpdateProperties<ValidCharacterCollection>(ValidCharacterCollection, ValidCharacterCollection)
|
||||
nameWithType: ObjectExtensions.UpdateProperties<ValidCharacterCollection>(ValidCharacterCollection, ValidCharacterCollection)
|
||||
fullName: CapyKit.Extensions.ObjectExtensions.UpdateProperties<CapyKit.Helpers.ValidCharacterCollection>(CapyKit.Helpers.ValidCharacterCollection, CapyKit.Helpers.ValidCharacterCollection)
|
||||
nameWithType.vb: ObjectExtensions.UpdateProperties(Of ValidCharacterCollection)(ValidCharacterCollection, ValidCharacterCollection)
|
||||
fullName.vb: CapyKit.Extensions.ObjectExtensions.UpdateProperties(Of CapyKit.Helpers.ValidCharacterCollection)(CapyKit.Helpers.ValidCharacterCollection, CapyKit.Helpers.ValidCharacterCollection)
|
||||
name.vb: UpdateProperties(Of ValidCharacterCollection)(ValidCharacterCollection, ValidCharacterCollection)
|
||||
spec.csharp:
|
||||
- uid: CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(CapyKit.Helpers.ValidCharacterCollection,CapyKit.Helpers.ValidCharacterCollection)
|
||||
name: UpdateProperties
|
||||
href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties__1___0___0_
|
||||
- name: <
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection
|
||||
name: ValidCharacterCollection
|
||||
href: CapyKit.Helpers.ValidCharacterCollection.html
|
||||
- name: '>'
|
||||
- name: (
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection
|
||||
name: ValidCharacterCollection
|
||||
href: CapyKit.Helpers.ValidCharacterCollection.html
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection
|
||||
name: ValidCharacterCollection
|
||||
href: CapyKit.Helpers.ValidCharacterCollection.html
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(CapyKit.Helpers.ValidCharacterCollection,CapyKit.Helpers.ValidCharacterCollection)
|
||||
name: UpdateProperties
|
||||
href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties__1___0___0_
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection
|
||||
name: ValidCharacterCollection
|
||||
href: CapyKit.Helpers.ValidCharacterCollection.html
|
||||
- name: )
|
||||
- name: (
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection
|
||||
name: ValidCharacterCollection
|
||||
href: CapyKit.Helpers.ValidCharacterCollection.html
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection
|
||||
name: ValidCharacterCollection
|
||||
href: CapyKit.Helpers.ValidCharacterCollection.html
|
||||
- name: )
|
||||
- uid: System.Enum.CapyKit.Extensions.EnumerationExtensions.GetDescription
|
||||
commentId: M:CapyKit.Extensions.EnumerationExtensions.GetDescription(System.Enum)
|
||||
parent: CapyKit.Extensions.EnumerationExtensions
|
||||
definition: CapyKit.Extensions.EnumerationExtensions.GetDescription(System.Enum)
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetDescription_System_Enum_
|
||||
name: GetDescription(Enum)
|
||||
nameWithType: EnumerationExtensions.GetDescription(Enum)
|
||||
fullName: CapyKit.Extensions.EnumerationExtensions.GetDescription(System.Enum)
|
||||
spec.csharp:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetDescription(System.Enum)
|
||||
name: GetDescription
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetDescription_System_Enum_
|
||||
- name: (
|
||||
- uid: System.Enum
|
||||
name: Enum
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.enum
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetDescription(System.Enum)
|
||||
name: GetDescription
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetDescription_System_Enum_
|
||||
- name: (
|
||||
- uid: System.Enum
|
||||
name: Enum
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.enum
|
||||
- name: )
|
||||
- uid: System.Enum.CapyKit.Extensions.EnumerationExtensions.GetName
|
||||
commentId: M:CapyKit.Extensions.EnumerationExtensions.GetName(System.Enum)
|
||||
parent: CapyKit.Extensions.EnumerationExtensions
|
||||
definition: CapyKit.Extensions.EnumerationExtensions.GetName(System.Enum)
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetName_System_Enum_
|
||||
name: GetName(Enum)
|
||||
nameWithType: EnumerationExtensions.GetName(Enum)
|
||||
fullName: CapyKit.Extensions.EnumerationExtensions.GetName(System.Enum)
|
||||
spec.csharp:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetName(System.Enum)
|
||||
name: GetName
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetName_System_Enum_
|
||||
- name: (
|
||||
- uid: System.Enum
|
||||
name: Enum
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.enum
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetName(System.Enum)
|
||||
name: GetName
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetName_System_Enum_
|
||||
- name: (
|
||||
- uid: System.Enum
|
||||
name: Enum
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.enum
|
||||
- name: )
|
||||
- uid: System.Enum.CapyKit.Extensions.EnumerationExtensions.GetPrettyName
|
||||
commentId: M:CapyKit.Extensions.EnumerationExtensions.GetPrettyName(System.Enum)
|
||||
parent: CapyKit.Extensions.EnumerationExtensions
|
||||
definition: CapyKit.Extensions.EnumerationExtensions.GetPrettyName(System.Enum)
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetPrettyName_System_Enum_
|
||||
name: GetPrettyName(Enum)
|
||||
nameWithType: EnumerationExtensions.GetPrettyName(Enum)
|
||||
fullName: CapyKit.Extensions.EnumerationExtensions.GetPrettyName(System.Enum)
|
||||
spec.csharp:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetPrettyName(System.Enum)
|
||||
name: GetPrettyName
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetPrettyName_System_Enum_
|
||||
- name: (
|
||||
- uid: System.Enum
|
||||
name: Enum
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.enum
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetPrettyName(System.Enum)
|
||||
name: GetPrettyName
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetPrettyName_System_Enum_
|
||||
- name: (
|
||||
- uid: System.Enum
|
||||
name: Enum
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.enum
|
||||
- name: )
|
||||
- uid: System.Enum.CapyKit.Extensions.EnumerationExtensions.GetValue
|
||||
commentId: M:CapyKit.Extensions.EnumerationExtensions.GetValue(System.Enum)
|
||||
parent: CapyKit.Extensions.EnumerationExtensions
|
||||
definition: CapyKit.Extensions.EnumerationExtensions.GetValue(System.Enum)
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetValue_System_Enum_
|
||||
name: GetValue(Enum)
|
||||
nameWithType: EnumerationExtensions.GetValue(Enum)
|
||||
fullName: CapyKit.Extensions.EnumerationExtensions.GetValue(System.Enum)
|
||||
spec.csharp:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetValue(System.Enum)
|
||||
name: GetValue
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetValue_System_Enum_
|
||||
- name: (
|
||||
- uid: System.Enum
|
||||
name: Enum
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.enum
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetValue(System.Enum)
|
||||
name: GetValue
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetValue_System_Enum_
|
||||
- name: (
|
||||
- uid: System.Enum
|
||||
name: Enum
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.enum
|
||||
- name: )
|
||||
- uid: System.Object.CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object)
|
||||
commentId: M:CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object,System.Object)
|
||||
parent: CapyKit.Extensions.ObjectExtensions
|
||||
definition: CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object,System.Object)
|
||||
href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties_System_Object_System_Object_
|
||||
name: UpdateProperties(object, object)
|
||||
nameWithType: ObjectExtensions.UpdateProperties(object, object)
|
||||
fullName: CapyKit.Extensions.ObjectExtensions.UpdateProperties(object, object)
|
||||
nameWithType.vb: ObjectExtensions.UpdateProperties(Object, Object)
|
||||
fullName.vb: CapyKit.Extensions.ObjectExtensions.UpdateProperties(Object, Object)
|
||||
name.vb: UpdateProperties(Object, Object)
|
||||
spec.csharp:
|
||||
- uid: CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object,System.Object)
|
||||
name: UpdateProperties
|
||||
href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties_System_Object_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Object
|
||||
name: object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object,System.Object)
|
||||
name: UpdateProperties
|
||||
href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties_System_Object_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: Object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Object
|
||||
name: Object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.Parse``1(``0,System.String)
|
||||
commentId: M:CapyKit.Extensions.EnumerationExtensions.Parse``1(``0,System.String)
|
||||
isExternal: true
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_Parse__1___0_System_String_
|
||||
name: Parse<T>(T, string)
|
||||
nameWithType: EnumerationExtensions.Parse<T>(T, string)
|
||||
fullName: CapyKit.Extensions.EnumerationExtensions.Parse<T>(T, string)
|
||||
nameWithType.vb: EnumerationExtensions.Parse(Of T)(T, String)
|
||||
fullName.vb: CapyKit.Extensions.EnumerationExtensions.Parse(Of T)(T, String)
|
||||
name.vb: Parse(Of T)(T, String)
|
||||
spec.csharp:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.Parse``1(``0,System.String)
|
||||
name: Parse
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_Parse__1___0_System_String_
|
||||
- name: <
|
||||
- name: T
|
||||
- name: '>'
|
||||
- name: (
|
||||
- name: T
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.String
|
||||
name: string
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.string
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.Parse``1(``0,System.String)
|
||||
name: Parse
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_Parse__1___0_System_String_
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- name: T
|
||||
- name: )
|
||||
- name: (
|
||||
- name: T
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.String
|
||||
name: String
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.string
|
||||
- name: )
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions
|
||||
commentId: T:CapyKit.Extensions.EnumerationExtensions
|
||||
parent: CapyKit.Extensions
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html
|
||||
name: EnumerationExtensions
|
||||
nameWithType: EnumerationExtensions
|
||||
fullName: CapyKit.Extensions.EnumerationExtensions
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.Parse``1(``0,System.String,System.Boolean)
|
||||
commentId: M:CapyKit.Extensions.EnumerationExtensions.Parse``1(``0,System.String,System.Boolean)
|
||||
isExternal: true
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_Parse__1___0_System_String_System_Boolean_
|
||||
name: Parse<T>(T, string, bool)
|
||||
nameWithType: EnumerationExtensions.Parse<T>(T, string, bool)
|
||||
fullName: CapyKit.Extensions.EnumerationExtensions.Parse<T>(T, string, bool)
|
||||
nameWithType.vb: EnumerationExtensions.Parse(Of T)(T, String, Boolean)
|
||||
fullName.vb: CapyKit.Extensions.EnumerationExtensions.Parse(Of T)(T, String, Boolean)
|
||||
name.vb: Parse(Of T)(T, String, Boolean)
|
||||
spec.csharp:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.Parse``1(``0,System.String,System.Boolean)
|
||||
name: Parse
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_Parse__1___0_System_String_System_Boolean_
|
||||
- name: <
|
||||
- name: T
|
||||
- name: '>'
|
||||
- name: (
|
||||
- name: T
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.String
|
||||
name: string
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.string
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Boolean
|
||||
name: bool
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.Parse``1(``0,System.String,System.Boolean)
|
||||
name: Parse
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_Parse__1___0_System_String_System_Boolean_
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- name: T
|
||||
- name: )
|
||||
- name: (
|
||||
- name: T
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.String
|
||||
name: String
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.string
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Boolean
|
||||
name: Boolean
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||||
- name: )
|
||||
- uid: CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(``0,``0)
|
||||
commentId: M:CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(``0,``0)
|
||||
href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties__1___0___0_
|
||||
name: UpdateProperties<T>(T, T)
|
||||
nameWithType: ObjectExtensions.UpdateProperties<T>(T, T)
|
||||
fullName: CapyKit.Extensions.ObjectExtensions.UpdateProperties<T>(T, T)
|
||||
nameWithType.vb: ObjectExtensions.UpdateProperties(Of T)(T, T)
|
||||
fullName.vb: CapyKit.Extensions.ObjectExtensions.UpdateProperties(Of T)(T, T)
|
||||
name.vb: UpdateProperties(Of T)(T, T)
|
||||
spec.csharp:
|
||||
- uid: CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(``0,``0)
|
||||
name: UpdateProperties
|
||||
href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties__1___0___0_
|
||||
- name: <
|
||||
- name: T
|
||||
- name: '>'
|
||||
- name: (
|
||||
- name: T
|
||||
- name: ','
|
||||
- name: " "
|
||||
- name: T
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(``0,``0)
|
||||
name: UpdateProperties
|
||||
href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties__1___0___0_
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- name: T
|
||||
- name: )
|
||||
- name: (
|
||||
- name: T
|
||||
- name: ','
|
||||
- name: " "
|
||||
- name: T
|
||||
- name: )
|
||||
- uid: CapyKit.Extensions.ObjectExtensions
|
||||
commentId: T:CapyKit.Extensions.ObjectExtensions
|
||||
parent: CapyKit.Extensions
|
||||
href: CapyKit.Extensions.ObjectExtensions.html
|
||||
name: ObjectExtensions
|
||||
nameWithType: ObjectExtensions
|
||||
fullName: CapyKit.Extensions.ObjectExtensions
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetDescription(System.Enum)
|
||||
commentId: M:CapyKit.Extensions.EnumerationExtensions.GetDescription(System.Enum)
|
||||
isExternal: true
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetDescription_System_Enum_
|
||||
name: GetDescription(Enum)
|
||||
nameWithType: EnumerationExtensions.GetDescription(Enum)
|
||||
fullName: CapyKit.Extensions.EnumerationExtensions.GetDescription(System.Enum)
|
||||
spec.csharp:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetDescription(System.Enum)
|
||||
name: GetDescription
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetDescription_System_Enum_
|
||||
- name: (
|
||||
- uid: System.Enum
|
||||
name: Enum
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.enum
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetDescription(System.Enum)
|
||||
name: GetDescription
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetDescription_System_Enum_
|
||||
- name: (
|
||||
- uid: System.Enum
|
||||
name: Enum
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.enum
|
||||
- name: )
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetName(System.Enum)
|
||||
commentId: M:CapyKit.Extensions.EnumerationExtensions.GetName(System.Enum)
|
||||
isExternal: true
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetName_System_Enum_
|
||||
name: GetName(Enum)
|
||||
nameWithType: EnumerationExtensions.GetName(Enum)
|
||||
fullName: CapyKit.Extensions.EnumerationExtensions.GetName(System.Enum)
|
||||
spec.csharp:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetName(System.Enum)
|
||||
name: GetName
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetName_System_Enum_
|
||||
- name: (
|
||||
- uid: System.Enum
|
||||
name: Enum
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.enum
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetName(System.Enum)
|
||||
name: GetName
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetName_System_Enum_
|
||||
- name: (
|
||||
- uid: System.Enum
|
||||
name: Enum
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.enum
|
||||
- name: )
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetPrettyName(System.Enum)
|
||||
commentId: M:CapyKit.Extensions.EnumerationExtensions.GetPrettyName(System.Enum)
|
||||
isExternal: true
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetPrettyName_System_Enum_
|
||||
name: GetPrettyName(Enum)
|
||||
nameWithType: EnumerationExtensions.GetPrettyName(Enum)
|
||||
fullName: CapyKit.Extensions.EnumerationExtensions.GetPrettyName(System.Enum)
|
||||
spec.csharp:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetPrettyName(System.Enum)
|
||||
name: GetPrettyName
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetPrettyName_System_Enum_
|
||||
- name: (
|
||||
- uid: System.Enum
|
||||
name: Enum
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.enum
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetPrettyName(System.Enum)
|
||||
name: GetPrettyName
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetPrettyName_System_Enum_
|
||||
- name: (
|
||||
- uid: System.Enum
|
||||
name: Enum
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.enum
|
||||
- name: )
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetValue(System.Enum)
|
||||
commentId: M:CapyKit.Extensions.EnumerationExtensions.GetValue(System.Enum)
|
||||
isExternal: true
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetValue_System_Enum_
|
||||
name: GetValue(Enum)
|
||||
nameWithType: EnumerationExtensions.GetValue(Enum)
|
||||
fullName: CapyKit.Extensions.EnumerationExtensions.GetValue(System.Enum)
|
||||
spec.csharp:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetValue(System.Enum)
|
||||
name: GetValue
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetValue_System_Enum_
|
||||
- name: (
|
||||
- uid: System.Enum
|
||||
name: Enum
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.enum
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: CapyKit.Extensions.EnumerationExtensions.GetValue(System.Enum)
|
||||
name: GetValue
|
||||
href: CapyKit.Extensions.EnumerationExtensions.html#CapyKit_Extensions_EnumerationExtensions_GetValue_System_Enum_
|
||||
- name: (
|
||||
- uid: System.Enum
|
||||
name: Enum
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.enum
|
||||
- name: )
|
||||
- uid: CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object,System.Object)
|
||||
commentId: M:CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object,System.Object)
|
||||
isExternal: true
|
||||
href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties_System_Object_System_Object_
|
||||
name: UpdateProperties(object, object)
|
||||
nameWithType: ObjectExtensions.UpdateProperties(object, object)
|
||||
fullName: CapyKit.Extensions.ObjectExtensions.UpdateProperties(object, object)
|
||||
nameWithType.vb: ObjectExtensions.UpdateProperties(Object, Object)
|
||||
fullName.vb: CapyKit.Extensions.ObjectExtensions.UpdateProperties(Object, Object)
|
||||
name.vb: UpdateProperties(Object, Object)
|
||||
spec.csharp:
|
||||
- uid: CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object,System.Object)
|
||||
name: UpdateProperties
|
||||
href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties_System_Object_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Object
|
||||
name: object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object,System.Object)
|
||||
name: UpdateProperties
|
||||
href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties_System_Object_System_Object_
|
||||
- name: (
|
||||
- uid: System.Object
|
||||
name: Object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: ','
|
||||
- name: " "
|
||||
- uid: System.Object
|
||||
name: Object
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: )
|
||||
- uid: CapyKit.Extensions
|
||||
commentId: N:CapyKit.Extensions
|
||||
href: CapyKit.html
|
||||
name: CapyKit.Extensions
|
||||
nameWithType: CapyKit.Extensions
|
||||
fullName: CapyKit.Extensions
|
||||
spec.csharp:
|
||||
- uid: CapyKit
|
||||
name: CapyKit
|
||||
href: CapyKit.html
|
||||
- name: .
|
||||
- uid: CapyKit.Extensions
|
||||
name: Extensions
|
||||
href: CapyKit.Extensions.html
|
||||
spec.vb:
|
||||
- uid: CapyKit
|
||||
name: CapyKit
|
||||
href: CapyKit.html
|
||||
- name: .
|
||||
- uid: CapyKit.Extensions
|
||||
name: Extensions
|
||||
href: CapyKit.Extensions.html
|
||||
- uid: CapyKit.Helpers.ValidCharacterCollection
|
||||
commentId: T:CapyKit.Helpers.ValidCharacterCollection
|
||||
parent: CapyKit.Helpers
|
||||
href: CapyKit.Helpers.ValidCharacterCollection.html
|
||||
name: ValidCharacterCollection
|
||||
nameWithType: ValidCharacterCollection
|
||||
fullName: CapyKit.Helpers.ValidCharacterCollection
|
||||
Loading…
Add table
Add a link
Reference in a new issue