Class InfoPlistKey
Represents XCode project info.plist key.
Inheritance
System.Object
InfoPlistKey
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: StansAssets.IOS.XCode
Assembly: cs.temp.dll.dll
Syntax
[Serializable]
public class InfoPlistKey
Fields
BooleanValue
Info.plist key bool value
Declaration
public bool BooleanValue
Field Value
Type | Description |
---|---|
System.Boolean |
ChildrenIds
Id's of nested keys
Declaration
public List<string> ChildrenIds
Field Value
Type | Description |
---|---|
List<System.String> |
FloatValue
Info.plist key float value
Declaration
public float FloatValue
Field Value
Type | Description |
---|---|
System.Single |
IntegerValue
Info.plist key int value
Declaration
public int IntegerValue
Field Value
Type | Description |
---|---|
System.Int32 |
Name
Info.plist Key name
Declaration
public string Name
Field Value
Type | Description |
---|---|
System.String |
StringValue
Info.plist key string value
Declaration
public string StringValue
Field Value
Type | Description |
---|---|
System.String |
Type
Info.plist key type
Declaration
public InfoPlistKeyType Type
Field Value
Type | Description |
---|---|
InfoPlistKeyType |
Properties
Children
Declaration
public List<InfoPlistKey> Children { get; }
Property Value
Type | Description |
---|---|
List<InfoPlistKey> |
Methods
AddChild(InfoPlistKey)
Adds child key
Declaration
public void AddChild(InfoPlistKey childKey)
Parameters
Type | Name | Description |
---|---|---|
InfoPlistKey | childKey |
Clear()
Declaration
public void Clear()
GetChildByStringValue(String)
Declaration
public InfoPlistKey GetChildByStringValue(string val)
Parameters
Type | Name | Description |
---|---|---|
System.String | val |
Returns
Type | Description |
---|---|
InfoPlistKey |
RemoveChild(InfoPlistKey)
Declaration
public void RemoveChild(InfoPlistKey childKey)
Parameters
Type | Name | Description |
---|---|---|
InfoPlistKey | childKey |