Aqueduct.SitecoreLib.DataAccess.ValueResolvers.GuidValueResolver.ResolveEntityPropertyValue C# (CSharp) Method

ResolveEntityPropertyValue() public method

public ResolveEntityPropertyValue ( string rawValue, Type propertyType ) : object
rawValue string
propertyType System.Type
return object
		public object ResolveEntityPropertyValue(string rawValue, Type propertyType)
		{
			return new Guid(rawValue);
		}